python-construct/split_debug.patch
Tomáš Chvátal 3cfaeef8f3 - Update to 2.10.56:
* drop support for python2
  * no upstream changelog
- Rebase patch split_debug.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-construct?expand=0&rev=33
2020-02-12 12:21:40 +00:00

39 lines
1.0 KiB
Diff

Index: construct-2.10.56/construct/__init__.py
===================================================================
--- construct-2.10.56.orig/construct/__init__.py
+++ construct-2.10.56/construct/__init__.py
@@ -21,7 +21,6 @@ Hands-on example:
from construct.core import *
from construct.expr import *
-from construct.debug import *
from construct.version import *
from construct import lib
@@ -69,7 +68,6 @@ __all__ = [
'ConstructError',
'Container',
'CString',
- 'Debugger',
'Default',
'Double',
'Enum',
@@ -143,7 +141,6 @@ __all__ = [
'possiblestringencodings',
'Prefixed',
'PrefixedArray',
- 'Probe',
'ProcessRotateLeft',
'ProcessXor',
'RangeError',
@@ -206,3 +203,9 @@ __all__ = [
]
__all__ += ["Int%s%s%s" % (n,us,bln) for n in (8,16,24,32,64) for us in "us" for bln in "bln"]
__all__ += ["Float%s%s" % (n,bln) for n in (16,32,64) for bln in "bln"]
+
+try:
+ from construct.debug import *
+ __all__ += ['Debugger', 'Probe']
+except ImportError:
+ pass