summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-15 04:56:35 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-01-15 04:56:35 (GMT)
commit562b7cbff9ec2a69694aabfb4845208c851bd08e (patch)
tree85f2cda8b98e438e2639a342eba6301da3404d5c /Misc
parent29ad0111bd8c7edd049c964c66cfb9e9114c99d2 (diff)
downloadcpython-562b7cbff9ec2a69694aabfb4845208c851bd08e.zip
cpython-562b7cbff9ec2a69694aabfb4845208c851bd08e.tar.gz
cpython-562b7cbff9ec2a69694aabfb4845208c851bd08e.tar.bz2
fix parsing reST with code or code-block directives (closes #23063)
Patch by Marc Abramowitz.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 96e34e4..4127269 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,9 @@ Core and Builtins
Library
-------
+- Issue #23063: In the disutils' check command, fix parsing of reST with code or
+ code-block directives.
+
- Issue #23209, #23225: selectors.BaseSelector.close() now clears its internal
reference to the selector mapping to break a reference cycle. Initial patch
written by Martin Richard.