summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXtreak <tir.karthi@gmail.com>2019-12-15 23:34:12 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2019-12-15 23:34:12 (GMT)
commit79f02fee1a542c440fd906fd54154c73fc0f8235 (patch)
tree33368ca08ce4e6560eccfcf0fa173a2ad19344e1 /Misc
parentd587272fe3b0fcad2f23a490e76f9f82ca7d64ef (diff)
downloadcpython-79f02fee1a542c440fd906fd54154c73fc0f8235.zip
cpython-79f02fee1a542c440fd906fd54154c73fc0f8235.tar.gz
cpython-79f02fee1a542c440fd906fd54154c73fc0f8235.tar.bz2
bpo-39033: Fix NameError in zipimport during hash validation (GH-17588)
Patch by Karthikeyan Singaravelan.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2019-12-13-18-54-49.bpo-39033.cepuyD.rst1
2 files changed, 2 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 253e2f6..5f42760 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1901,3 +1901,4 @@ Tim Hopper
Dan Lidral-Porter
Ngalim Siregar
Tim Gates
+Karthikeyan Singaravelan \ No newline at end of file
diff --git a/Misc/NEWS.d/next/Library/2019-12-13-18-54-49.bpo-39033.cepuyD.rst b/Misc/NEWS.d/next/Library/2019-12-13-18-54-49.bpo-39033.cepuyD.rst
new file mode 100644
index 0000000..3dee3c0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-12-13-18-54-49.bpo-39033.cepuyD.rst
@@ -0,0 +1 @@
+Fix :exc:`NameError` in :mod:`zipimport`. Patch by Karthikeyan Singaravelan.