Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Issue #2776: fixed small issue when handling an URL with double slash | Facundo Batista | 2008-08-16 | 1 | -3/+8 | |
| | | | | after a 302 response in the case of not going through a proxy. | |||||
* | Fix a few urllib bugs (NameErrors). | Georg Brandl | 2008-07-01 | 1 | -123/+122 | |
| | | | | | Also directly import names from the various urllib submodules, saves attribute lookup and is much cleaner. | |||||
* | Fix old urllib/urllib2/urlparse usage. | Georg Brandl | 2008-06-23 | 1 | -10/+11 | |
| | ||||||
* | follow-up of r64385: rename urllib.quote in nturl2path | Amaury Forgeot d'Arc | 2008-06-18 | 1 | -3/+0 | |
| | | | | and remove assertions & debugger when ssl is not present | |||||
* | Make a new urllib package . | Jeremy Hylton | 2008-06-18 | 1 | -0/+2295 | |
It consists of code from urllib, urllib2, urlparse, and robotparser. The old modules have all been removed. The new package has five submodules: urllib.parse, urllib.request, urllib.response, urllib.error, and urllib.robotparser. The urllib.request.urlopen() function uses the url opener from urllib2. Note that the unittests have not been renamed for the beta, but they will be renamed in the future. Joint work with Senthil Kumaran. |