chiark / gitweb /
catacomb/__init__.py: Rearrange the imports.
[catacomb-python] / catacomb / __init__.py
index 854f8fef71ddd8fdd35f6b9b0efa1555f5cc4c61..53d7cea39c40fda475afce63327e487506e1e8e8 100644 (file)
 
 from __future__ import with_statement
 
-import _base
-import types as _types
 from binascii import hexlify as _hexify, unhexlify as _unhexify
 from contextlib import contextmanager as _ctxmgr
-import sys as _sys
 from struct import pack as _pack
+import sys as _sys
+import types as _types
+
+###--------------------------------------------------------------------------
+### Import the main C extension module.
+
+import _base
 
 ###--------------------------------------------------------------------------
 ### Basic stuff.