diff zipfile.py @ 50:4ea7133ac25c

Converted 2.00 into the default branch
author Oleg Oshmyan <chortos@inbox.lv>
date Sun, 19 Dec 2010 23:25:13 +0200
parents 2.00/zipfile.py@a8cc383b787c
children bbf9c434fa57
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/zipfile.py	Sun Dec 19 23:25:13 2010 +0200
@@ -0,0 +1,7 @@
+import sys
+if sys.version_info[0] >= 3:
+	from zipfile31 import *
+elif sys.version_info[1] >= 7:
+	from zipfile27 import *
+else:
+	from zipfile26 import *
\ No newline at end of file