From 7b7d589923c36af421bf2b33cd7ef798d05224ed Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Mon, 26 Sep 2011 18:13:53 +0100 Subject: [PATCH] PEP8ify --- contrib/release/bump_version.py | 7 +++---- kombu/__init__.py | 1 + 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/release/bump_version.py b/contrib/release/bump_version.py index dd7aa126..e49225c2 100755 --- a/contrib/release/bump_version.py +++ b/contrib/release/bump_version.py @@ -27,6 +27,7 @@ def no_enoent(): if exc.errno != errno.ENOENT: raise + class StringVersion(object): def decode(self, s): @@ -62,6 +63,7 @@ class TupleVersion(object): v.pop() return ", ".join(map(quote, v)) + class VersionFile(object): def __init__(self, filename): @@ -90,6 +92,7 @@ class VersionFile(object): if m: return self.type.decode(m.groups()[0]) + class PyVersion(VersionFile): regex = re.compile(r'^VERSION\s*=\s*\((.+?)\)') wb = "VERSION = (%s)\n" @@ -149,9 +152,5 @@ def main(argv=sys.argv, docfile="README.rst", custom=None): pass bump(dist, docfile, custom) - - - if __name__ == "__main__": main() - diff --git a/kombu/__init__.py b/kombu/__init__.py index 40d7071b..43f95a35 100644 --- a/kombu/__init__.py +++ b/kombu/__init__.py @@ -27,6 +27,7 @@ for module, items in all_by_module.iteritems(): for item in items: object_origins[item] = module + class module(ModuleType): def __getattr__(self, name):