remove py3k compat code
diff --git a/Lib/zipfile.py b/Lib/zipfile.py
index 3106353..3147f98 100644
--- a/Lib/zipfile.py
+++ b/Lib/zipfile.py
@@ -952,7 +952,9 @@
         """
         # build the destination pathname, replacing
         # forward slashes to platform specific separators.
-        if targetpath[-1:] in (os.path.sep, os.path.altsep):
+        # Don't strip it if it is a drive.
+        if targetpath[-1:] in (os.path.sep, os.path.altsep) and \
+                not (len(targetpath) > 1 and targetpath[-2] == ":"):
             targetpath = targetpath[:-1]
 
         # don't include leading "/" from file name if present