summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBatuhan Taşkaya <47358913+isidentical@users.noreply.github.com>2020-03-01 20:07:22 (GMT)
committerGitHub <noreply@github.com>2020-03-01 20:07:22 (GMT)
commit185903de12de8837bf0dc0008a16e5e56c66a019 (patch)
treedff76400c68deceedbd15872cc0e1c3e0aa0cc09 /Misc
parent768d739c1cd8c1d41902229581811a9b86bcc76e (diff)
downloadcpython-185903de12de8837bf0dc0008a16e5e56c66a019.zip
cpython-185903de12de8837bf0dc0008a16e5e56c66a019.tar.gz
cpython-185903de12de8837bf0dc0008a16e5e56c66a019.tar.bz2
bpo-39520: Fix un-parsing of ext slices with no dimensions (GH-18304)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-02-02-00-12-07.bpo-39520.uicBq6.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-02-02-00-12-07.bpo-39520.uicBq6.rst b/Misc/NEWS.d/next/Core and Builtins/2020-02-02-00-12-07.bpo-39520.uicBq6.rst
new file mode 100644
index 0000000..dec6765
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-02-02-00-12-07.bpo-39520.uicBq6.rst
@@ -0,0 +1,2 @@
+Fix unparsing of ext slices with no items (``foo[:,]``). Patch by Batuhan
+Taskaya.