Index: Lib/zipfile.py =================================================================== --- Lib/zipfile.py (révision 72217) +++ Lib/zipfile.py (copie de travail) @@ -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): + # Strip trailing path separator, unless it represents the root. + if (targetpath[-1:] in (os.path.sep, os.path.altsep) + and len(os.path.splitdrive(targetpath)[1]) > 1): targetpath = targetpath[:-1] # don't include leading "/" from file name if present