This commit is contained in:
Ask Solem 2011-09-26 18:13:53 +01:00
parent 31a2ea90ca
commit 7b7d589923
2 changed files with 4 additions and 4 deletions

View File

@ -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()

View File

@ -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):