diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-15 04:56:35 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-15 04:56:35 (GMT) |
commit | 562b7cbff9ec2a69694aabfb4845208c851bd08e (patch) | |
tree | 85f2cda8b98e438e2639a342eba6301da3404d5c /Misc | |
parent | 29ad0111bd8c7edd049c964c66cfb9e9114c99d2 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |