diff options
author | Xie Yanbo <xieyanbo@gmail.com> | 2024-05-06 13:58:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 13:58:27 (GMT) |
commit | c3f4a6b52418d9b9f091f864cb6340d0d5fc6966 (patch) | |
tree | 1a9e9e10bdaee86bb9e901c3aa3a52a2c58f2eda | |
parent | 0085c3ae8f067abd4f6540d0f6dd2fb13107618e (diff) | |
download | cpython-c3f4a6b52418d9b9f091f864cb6340d0d5fc6966.zip cpython-c3f4a6b52418d9b9f091f864cb6340d0d5fc6966.tar.gz cpython-c3f4a6b52418d9b9f091f864cb6340d0d5fc6966.tar.bz2 |
Fix typo in Lib/zipfile/_path/__init__.py (#118622)
-rw-r--r-- | Lib/zipfile/_path/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/zipfile/_path/__init__.py b/Lib/zipfile/_path/__init__.py index 4c16756..79ebb77 100644 --- a/Lib/zipfile/_path/__init__.py +++ b/Lib/zipfile/_path/__init__.py @@ -262,7 +262,7 @@ class Path: >>> str(path.parent) 'mem' - If the zipfile has no filename, such attribtues are not + If the zipfile has no filename, such attributes are not valid and accessing them will raise an Exception. >>> zf.filename = None |