summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-10-03 00:13:05 (GMT)
committerJesus Cea <jcea@jcea.es>2012-10-03 00:13:05 (GMT)
commit09bf7a799da7c8b7cdd0f9c5cd789769b8cab2d5 (patch)
treeb7be4368d81231286d2c81bec7bf5100370f7d56 /Misc
parentf532035551368b254e86d0e68004983c107f33f5 (diff)
downloadcpython-09bf7a799da7c8b7cdd0f9c5cd789769b8cab2d5.zip
cpython-09bf7a799da7c8b7cdd0f9c5cd789769b8cab2d5.tar.gz
cpython-09bf7a799da7c8b7cdd0f9c5cd789769b8cab2d5.tar.bz2
Closes #15897: zipimport.c doesn't check return value of fseek()
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 8519029..46016e2 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -227,6 +227,7 @@ Christopher A. Craig
Jeremy Craven
Laura Creighton
Simon Cross
+Felipe Cruz
Drew Csillag
Joaquin Cuenca Abela
John Cugini
diff --git a/Misc/NEWS b/Misc/NEWS
index a676f3e..e7fc4f8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,9 @@ Core and Builtins
- Issue #15020: The program name used to search for Python's path is now
"python3" under Unix, not "python".
+- Issue #15897: zipimport.c doesn't check return value of fseek().
+ Patch by Felipe Cruz.
+
- Issue #15033: Fix the exit status bug when modules invoked using -m swith,
return the proper failure return value (1). Patch contributed by Jeff Knupp.