diff options
author | Fred Drake <fdrake@acm.org> | 2002-08-13 13:59:55 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-08-13 13:59:55 (GMT) |
commit | a87a521b832c065db4eb53b43eae9f16de8a63ad (patch) | |
tree | f83481aa3cc125477d8a873c4f3fd56dee030eef /Lib/urllib2.py | |
parent | 83499db4f0ff82bb2f7a60ff593245d0ee55c2cf (diff) | |
download | cpython-a87a521b832c065db4eb53b43eae9f16de8a63ad.zip cpython-a87a521b832c065db4eb53b43eae9f16de8a63ad.tar.gz cpython-a87a521b832c065db4eb53b43eae9f16de8a63ad.tar.bz2 |
Remove ugly irregular spaces from in front of some comments.
Diffstat (limited to 'Lib/urllib2.py')
-rw-r--r-- | Lib/urllib2.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/urllib2.py b/Lib/urllib2.py index 9a4ad3c..031f024 100644 --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -141,7 +141,7 @@ def install_opener(opener): # do these error classes make sense? # make sure all of the IOError stuff is overridden. we just want to be - # subtypes. +# subtypes. class URLError(IOError): # URLError is a sub-type of IOError, but it doesn't share any of @@ -350,9 +350,9 @@ class OpenerDirector: return self._call_chain(*args) # XXX probably also want an abstract factory that knows things like - # the fact that a ProxyHandler needs to get inserted first. +# the fact that a ProxyHandler needs to get inserted first. # would also know when it makes sense to skip a superclass in favor of - # a subclass and when it might make sense to include both +# a subclass and when it might make sense to include both def build_opener(*handlers): """Create an opener object from a list of handlers. |