summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-01 17:00:30 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-01 17:00:30 (GMT)
commit34cba334034ddef3b32e47bf94cb7d224cfaf15d (patch)
tree7061090d58a054f396693d984b7d6e38113690e6 /Misc
parentb47913f54f7b09189f0695144b26e85d87227d3d (diff)
downloadcpython-34cba334034ddef3b32e47bf94cb7d224cfaf15d.zip
cpython-34cba334034ddef3b32e47bf94cb7d224cfaf15d.tar.gz
cpython-34cba334034ddef3b32e47bf94cb7d224cfaf15d.tar.bz2
Issue #29094: Offsets in a ZIP file created with extern file object and modes
"w" and "x" now are relative to the start of the file.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0dd4ef1..ad67b1d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -140,6 +140,9 @@ Core and Builtins
Library
-------
+- Issue #29094: Offsets in a ZIP file created with extern file object and modes
+ "w" and "x" now are relative to the start of the file.
+
- Issue #13051: Fixed recursion errors in large or resized
curses.textpad.Textbox. Based on patch by Tycho Andersen.