Skip to content

Commit

Permalink
cleanup extension object code for encoding/decoding and add support f…
Browse files Browse the repository at this point in the history
…or registring on the fly
  • Loading branch information
oroulet committed Jan 8, 2017
1 parent c6a2e24 commit 3d927e9
Show file tree
Hide file tree
Showing 4 changed files with 701 additions and 279 deletions.
6 changes: 5 additions & 1 deletion opcua/common/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
Helper function and classes that do not rely on opcua library.
Helper function and classes depending on ua object are in ua_utils.py
"""

import logging
import os
from concurrent.futures import Future
Expand All @@ -6,7 +11,6 @@
from socket import error as SocketError

try:
# we prefer to use bundles asyncio version, otherwise fallback to trollius
import asyncio
except ImportError:
import trollius as asyncio
Expand Down
Loading

0 comments on commit 3d927e9

Please sign in to comment.