summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-12-02 02:58:07 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-12-02 02:58:07 (GMT)
commitd2bb830edc7fc9e54b6ccd8c75a23ed8fee455e0 (patch)
tree87cb3e02894374a4aa4dcbe7b5a56c29b3f3f188 /Misc
parent2fdc7b1f759e557c57d16e91b9ac53f2b441c0be (diff)
downloadcpython-d2bb830edc7fc9e54b6ccd8c75a23ed8fee455e0.zip
cpython-d2bb830edc7fc9e54b6ccd8c75a23ed8fee455e0.tar.gz
cpython-d2bb830edc7fc9e54b6ccd8c75a23ed8fee455e0.tar.bz2
#10464: fix netrc handling of lines with embedded '#" characters.
Patch by Xuanji Li.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 1aa9613..0f7ed37 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -501,6 +501,7 @@ John Lenton
Christopher Tur Lesniewski-Laas
Mark Levinson
William Lewis
+Xuanji Li
Robert van Liere
Ross Light
Shawn Ligocki
diff --git a/Misc/NEWS b/Misc/NEWS
index 494087c..adec2df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,8 @@ Core and Builtins
Library
-------
+- Issue #10464: netrc now correctly handles lines with embedded '#' characters.
+
- Added itertools.accumulate().
- Issue #4113: Added custom ``__repr__`` method to ``functools.partial``.