]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-126565: Skip `zipfile.Path.exists` check in write mode (#126576)
authorJan Hicken <janhicken@users.noreply.github.com>
Sun, 10 Nov 2024 14:57:24 +0000 (15:57 +0100)
committerGitHub <noreply@github.com>
Sun, 10 Nov 2024 14:57:24 +0000 (09:57 -0500)
When `zipfile.Path.open` is called, the implementation will check
whether the path already exists in the ZIP file. However, this check is
only required when the ZIP file is in read mode. By swapping arguments
of the `and` operator, the short-circuiting will prevent the check from
being run in write mode.

This change will improve the performance of `open()`, because checking
whether a file exists is slow in write mode, especially when the archive
has many members.

Lib/zipfile/_path/__init__.py
Misc/NEWS.d/next/Library/2024-11-08-11-06-14.gh-issue-126565.dFFO22.rst [new file with mode: 0644]

index c0e53e273cfaac14e9b6034a586ebc8e4b7d5989..5ae16ec970dda421053623c617d27436f4170388 100644 (file)
@@ -339,7 +339,7 @@ class Path:
         if self.is_dir():
             raise IsADirectoryError(self)
         zip_mode = mode[0]
-        if not self.exists() and zip_mode == 'r':
+        if zip_mode == 'r' and not self.exists():
             raise FileNotFoundError(self)
         stream = self.root.open(self.at, zip_mode, pwd=pwd)
         if 'b' in mode:
diff --git a/Misc/NEWS.d/next/Library/2024-11-08-11-06-14.gh-issue-126565.dFFO22.rst b/Misc/NEWS.d/next/Library/2024-11-08-11-06-14.gh-issue-126565.dFFO22.rst
new file mode 100644 (file)
index 0000000..2285857
--- /dev/null
@@ -0,0 +1 @@
+Improve performances of :meth:`zipfile.Path.open` for non-reading modes.