summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-12-18 18:27:45 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-12-18 18:27:45 (GMT)
commit2bc801c4ea7b47d4b6db49e0ac0d9e0b3cfef010 (patch)
tree773175e5a4cf9d1518ad541e58a0bf9487b526d0 /Misc
parentcf53ae2171d01eed0e1c902b51da27b5bdfbc143 (diff)
downloadcpython-2bc801c4ea7b47d4b6db49e0ac0d9e0b3cfef010.zip
cpython-2bc801c4ea7b47d4b6db49e0ac0d9e0b3cfef010.tar.gz
cpython-2bc801c4ea7b47d4b6db49e0ac0d9e0b3cfef010.tar.bz2
Issue #7502: Fix equality comparison for DocTestCase instances.
Patch by Cédric Krier.
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 10f1386..86c78ab 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -509,6 +509,7 @@ Bob Kras
Holger Krekel
Michael Kremer
Fabian Kreutz
+Cédric Krier
Hannu Krosing
Andrej Krpic
Ivan Krstić
diff --git a/Misc/NEWS b/Misc/NEWS
index 72b33b9..7dbaaff 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -97,6 +97,9 @@ Core and Builtins
Library
-------
+- Issue #7502: Fix equality comparison for DocTestCase instances. Patch by
+ Cédric Krier.
+
- Issue #8035: urllib: Fix a bug where the client could remain stuck after a
redirection or an error.