=== modified file 'inotifyx/__init__.py' --- inotifyx/__init__.py 2014-08-22 21:04:24 +0000 +++ inotifyx/__init__.py 2017-02-03 08:51:49 +0000 @@ -40,11 +40,14 @@ from inotifyx.distinfo import version as __version__ -constants = {} +flags = {} for name in dir(binding): if name.startswith('IN_'): - globals()[name] = constants[name] = getattr(binding, name) + v = getattr(binding, name) + globals()[name] = v + if v in [1<