summaryrefslogtreecommitdiffstats
path: root/Lib/zipimport.py
diff options
context:
space:
mode:
authorabstractee <48130041+abstractee@users.noreply.github.com>2024-09-03 00:20:40 (GMT)
committerGitHub <noreply@github.com>2024-09-03 00:20:40 (GMT)
commit1f4a49ea53516e7ff177beedc09a1e4439b3be1f (patch)
treec6aebbf8b1875231a21c667e16d3168111e672bd /Lib/zipimport.py
parent33b790978d8b817a66a4a117a8c38a857b6103f0 (diff)
downloadcpython-1f4a49ea53516e7ff177beedc09a1e4439b3be1f.zip
cpython-1f4a49ea53516e7ff177beedc09a1e4439b3be1f.tar.gz
cpython-1f4a49ea53516e7ff177beedc09a1e4439b3be1f.tar.bz2
Fix typos in warnings, docstrings, comments and text files (#123597)
Diffstat (limited to 'Lib/zipimport.py')
-rw-r--r--Lib/zipimport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/zipimport.py b/Lib/zipimport.py
index f2724dd..7ceae2b 100644
--- a/Lib/zipimport.py
+++ b/Lib/zipimport.py
@@ -523,7 +523,7 @@ def _read_directory(archive):
# N.b. Here be dragons: the ordering of these is different than
# the header fields, and it's really easy to get it wrong since
- # naturally-occuring zips that use all 3 are >4GB
+ # naturally-occurring zips that use all 3 are >4GB
if file_size == MAX_UINT32:
file_size = values.pop(0)
if data_size == MAX_UINT32: