summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-23 17:23:07 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-23 17:23:07 (GMT)
commit56ad5ed5ad37746228f7482fd501d8469539a2c1 (patch)
treeb8eff591f4941d1269d3699cb31e582b94847e72 /Misc
parent3cbdaa3fee9489570124c368c94ff84718c81dae (diff)
downloadcpython-56ad5ed5ad37746228f7482fd501d8469539a2c1.zip
cpython-56ad5ed5ad37746228f7482fd501d8469539a2c1.tar.gz
cpython-56ad5ed5ad37746228f7482fd501d8469539a2c1.tar.bz2
Issue #16443: Add docstrings to regular expression match objects.
Patch by Anton Kasyanov.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 81af9fd..f9c75ab 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -543,6 +543,7 @@ Peter van Kampen
Rafe Kaplan
Jacob Kaplan-Moss
Jan Kaliszewski
+Anton Kasyanov
Lou Kates
Hiroaki Kawai
Sebastien Keim
diff --git a/Misc/NEWS b/Misc/NEWS
index 2b50cbb..4ddcd00 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -179,6 +179,9 @@ Core and Builtins
Library
-------
+- Issue #16443: Add docstrings to regular expression match objects.
+ Patch by Anton Kasyanov.
+
- Issue #16646: ftplib.FTP.makeport() might lose socket error details.
(patch by Serhiy Storchaka)