summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-05-13 05:05:09 (GMT)
committerRaymond Hettinger <python@rcn.com>2014-05-13 05:05:09 (GMT)
commit51669d8c188dad5b4e9fc071e5d2e8f8cde9ed37 (patch)
tree8bbe5e57744e05e09b417582c599241ef022ffb9
parenta7364a887c97650e072acded7a37337287b0011c (diff)
parent8cc67a1b42fb7fa3d257ee61d40008a04f64681d (diff)
downloadcpython-51669d8c188dad5b4e9fc071e5d2e8f8cde9ed37.zip
cpython-51669d8c188dad5b4e9fc071e5d2e8f8cde9ed37.tar.gz
cpython-51669d8c188dad5b4e9fc071e5d2e8f8cde9ed37.tar.bz2
merge
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 777b263..6c128af 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -109,6 +109,10 @@ Library
Decimal.quantize() method in the Python version. It had never been
present in the C version.
+- Issue #21469: Reduced the risk of false positives in robotparser by
+ checking to make sure that robots.txt has been read or does not exist
+ prior to returning True in can_fetch().
+
- Issue #19414: Have the OrderedDict mark deleted links as unusable.
This gives an early failure if the link is deleted during iteration.