aboutsummaryrefslogtreecommitdiff
path: root/unixreg/__init__.py
blob: fdab30a5b7acecf2474bfd86dc69009cdcd10abf (plain)
1
2
3
4
5
6
7
8
9
10
__version__ = "0.1.0"


# upwards compatibility with winreg
try:
	from winreg import *
except ImportError:
	from .functions import *
	from .constants import *
	from .key import *