changeset 325 | 908a1f6faa27 |
parent 320 | d6b1091f5061 |
child 328 | db7e7dd4899f |
324:dffa18e6cba4 | 325:908a1f6faa27 |
---|---|
1 VERSION = (2, 20, 0, "final", 0) |
1 VERSION = (2, 21, 0, "final", 0) |
2 |
2 |
3 VERSION_STR = unicode(".".join(map(lambda i: "%02d" % (i,), VERSION[:2]))) |
3 VERSION_STR = unicode(".".join(["%02d" % (i,) for i in VERSION[:2]])) |
4 |
4 |
5 |
5 |
6 def get_version(): |
6 def get_version(): |
7 version = '%s.%s' % (VERSION[0], VERSION[1]) |
7 version = '%s.%s' % (VERSION[0], VERSION[1]) |
8 if VERSION[2]: |
8 if VERSION[2]: |