summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-01-05 17:30:53 (GMT)
committerGitHub <noreply@github.com>2020-01-05 17:30:53 (GMT)
commit4b66fa6ce9c37e70b55af220d0e07368319de803 (patch)
treee6863cade7856b951c4ee966df8b43fd8b6d5419 /Misc
parentb121a4a45ff4bab8812a9b26ceffe5ad642f5d5a (diff)
downloadcpython-4b66fa6ce9c37e70b55af220d0e07368319de803.zip
cpython-4b66fa6ce9c37e70b55af220d0e07368319de803.tar.gz
cpython-4b66fa6ce9c37e70b55af220d0e07368319de803.tar.bz2
bpo-39200: Correct the error message for range() empty constructor (GH-17813)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-01-03-14-50-14.bpo-39200.Ip2_iI.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-01-03-14-50-14.bpo-39200.Ip2_iI.rst b/Misc/NEWS.d/next/Core and Builtins/2020-01-03-14-50-14.bpo-39200.Ip2_iI.rst
new file mode 100644
index 0000000..e5cb396
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-01-03-14-50-14.bpo-39200.Ip2_iI.rst
@@ -0,0 +1,2 @@
+Correct the error message when trying to construct :class:`range` objects
+with no arguments. Patch by Pablo Galindo.