summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorAlex <a.v.shkop@gmail.com>2019-09-11 11:04:04 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2019-09-11 11:04:04 (GMT)
commit972cf5c06a5ba16ad243a442dbb9c15307fbed95 (patch)
treedd46b382dca4d0ad097442ba910e24f84b0755dd /Misc/NEWS.d
parent6a9fd66f6e4445a418c43c92585b9e06d76df4b1 (diff)
downloadcpython-972cf5c06a5ba16ad243a442dbb9c15307fbed95.zip
cpython-972cf5c06a5ba16ad243a442dbb9c15307fbed95.tar.gz
cpython-972cf5c06a5ba16ad243a442dbb9c15307fbed95.tar.bz2
bpo-35168: Make shlex.punctuation_chars read-only (#11631)
* bpo-35168: Documentation about shlex.punctuation_chars now states that it should be set in __init__.py * bpo-35168: Convert shlex.punctuation_chars to read-only property * Add NEWS.d entry
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2019-01-22-09-23-20.bpo-35168.UGv2yW.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-01-22-09-23-20.bpo-35168.UGv2yW.rst b/Misc/NEWS.d/next/Library/2019-01-22-09-23-20.bpo-35168.UGv2yW.rst
new file mode 100644
index 0000000..10684fd
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-01-22-09-23-20.bpo-35168.UGv2yW.rst
@@ -0,0 +1 @@
+:attr:`shlex.shlex.punctuation_chars` is now a read-only property.