diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 13:48:10 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-08 13:48:10 +0000 |
commit | f0564164bab43f078c9f84f334d72ddb0e69110c (patch) | |
tree | c932a0e51179ab15c414b95f280815f0901ac71a /Lib/urllib | |
parent | 129fe04d4deec15f9ca0ee79776e0c4335fc12e7 (diff) | |
download | cpython-git-f0564164bab43f078c9f84f334d72ddb0e69110c.tar.gz |
Fix typos in comments, documentation and test method names
Diffstat (limited to 'Lib/urllib')
-rw-r--r-- | Lib/urllib/robotparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib/robotparser.py b/Lib/urllib/robotparser.py index 4fbb0cb995..8b69fd985e 100644 --- a/Lib/urllib/robotparser.py +++ b/Lib/urllib/robotparser.py @@ -132,7 +132,7 @@ class RobotFileParser: return True # Until the robots.txt file has been read or found not # to exist, we must assume that no url is allowable. - # This prevents false positives when a user erronenously + # This prevents false positives when a user erroneously # calls can_fetch() before calling read(). if not self.last_checked: return False |