Skip to content

Commit 3d927e9

Browse files
committed
cleanup extension object code for encoding/decoding and add support for registring on the fly
1 parent c6a2e24 commit 3d927e9

File tree

4 files changed

+701
-279
lines changed

4 files changed

+701
-279
lines changed

opcua/common/utils.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
"""
2+
Helper function and classes that do not rely on opcua library.
3+
Helper function and classes depending on ua object are in ua_utils.py
4+
"""
5+
16
import logging
27
import os
38
from concurrent.futures import Future
@@ -6,7 +11,6 @@
611
from socket import error as SocketError
712

813
try:
9-
# we prefer to use bundles asyncio version, otherwise fallback to trollius
1014
import asyncio
1115
except ImportError:
1216
import trollius as asyncio

0 commit comments

Comments
 (0)