Skip to content

Commit bc2bd58

Browse files
Apply suggestions from code review
Co-authored-by: Peter Bierma <[email protected]>
1 parent fecb892 commit bc2bd58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/test/test_zipfile/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2334,7 +2334,7 @@ def test_read_after_seek(self):
23342334
self.assertEqual(fp.read(-1), b'men!')
23352335

23362336
def test_uncompressed_interleaved_seek_read(self):
2337-
# Issue 127847: Make sure the position in the archive is correct
2337+
# gh-127847: Make sure the position in the archive is correct
23382338
# in the special case of seeking in a ZIP_STORED entry.
23392339
with zipfile.ZipFile(TESTFN, "w") as zipf:
23402340
zipf.writestr("a.txt", "123")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Fix the position when doing interleaved seeks and reads in uncompressed unencrypted zip files
1+
Fix the position when doing interleaved seeks and reads in uncompressed, unencrypted zip files returned by :meth:`zipfile.ZipFile.open`.

0 commit comments

Comments
 (0)