diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-11-23 23:40:26 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2017-11-23 23:40:26 (GMT) |
commit | 3df02dbc8e197053105f9dffeae40b04ec66766e (patch) | |
tree | 81997c8cf3814de49d129bc0d79f4df84af659e9 /Misc | |
parent | 0858495a50e19defde786a4ec050ec182e920f46 (diff) | |
download | cpython-3df02dbc8e197053105f9dffeae40b04ec66766e.zip cpython-3df02dbc8e197053105f9dffeae40b04ec66766e.tar.gz cpython-3df02dbc8e197053105f9dffeae40b04ec66766e.tar.bz2 |
bpo-31325: Fix usage of namedtuple in RobotFileParser.parse() (#4529)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-11-23-22-12-11.bpo-31325.8jAUxN.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-23-22-12-11.bpo-31325.8jAUxN.rst b/Misc/NEWS.d/next/Library/2017-11-23-22-12-11.bpo-31325.8jAUxN.rst new file mode 100644 index 0000000..89a193c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-11-23-22-12-11.bpo-31325.8jAUxN.rst @@ -0,0 +1,5 @@ +Fix wrong usage of :func:`collections.namedtuple` in +the :meth:`RobotFileParser.parse() <urllib.robotparser.RobotFileParser.parse>` +method. + +Initial patch by Robin Wellner. |