summaryrefslogtreecommitdiff
path: root/Lib/test/test_urllib.py
Commit message (Expand)AuthorAgeFilesLines
* normalize whitespace. caught by hookSenthil Kumaran2013-04-101-2/+2
* merge from 3.3Senthil Kumaran2013-04-101-13/+90
|\
| * Merge DeprecationWarnings silencing in test_urllib from 3.3.Ezio Melotti2013-02-211-9/+14
| |\
| * | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-5/+5
| * | Issue #16423: urllib.request now has support for ``data:`` URLs.Antoine Pitrou2012-11-241-0/+74
| * | Fix test_urllib broken by my previous commits. The assumptions it wasGregory P. Smith2012-11-101-8/+10
| |\ \
| | * | Fix the windows buildbot permission error - close the fd of tempfile beffore ...Senthil Kumaran2012-10-231-6/+7
| | * | Fix issue16300: addressing the buildbot failures on windowsSenthil Kumaran2012-10-231-2/+1
| | * | skip the file localhost test on windows. Fix it on branch and modify the testSenthil Kumaran2012-10-221-0/+1
| | * | Fix the ResourceWarning in test_urllib.py due changes made for #16301. Patch ...Senthil Kumaran2012-10-221-1/+2
| | * | Issue #16301: Fix the localhost verification in urllib/request.py for file://...Senthil Kumaran2012-10-221-1/+1
| | * | Issue #16250: Fix the invocations of URLError which had misplaced filename at...Senthil Kumaran2012-10-211-2/+30
| | * | Issue #10836: Fix exception raised when file not found in urlretrieveSenthil Kumaran2012-10-211-0/+5
* | | | #5609 - test_urllib coverage for url2pathname and pathname2url. PatchSenthil Kumaran2013-04-101-17/+56
| |_|/ |/| |
* | | Silence DeprecationWarnings in test_urllib.Ezio Melotti2013-02-211-9/+14
|/ /
* | Fix test_urllib broken by my previous commits. The assumptions it wasGregory P. Smith2012-11-101-4/+5
* | Issue #16250: Fix URLError invocation with proper argsSenthil Kumaran2012-10-271-1/+34
|\ \ | |/ |/|
| * Issue #16250: Fix URLError invocation with proper args.Senthil Kumaran2012-10-271-0/+35
* | revert the changes done for issue14826 - quoting witin Request is not desirable.Senthil Kumaran2012-07-081-18/+45
|\ \ | |/ |/|
| * Fix issue14826 - make urllib.request.Request quoted url consistent with URLOp...Senthil Kumaran2012-07-071-0/+5
| |\
| * | deprecated the old urllib primitives in 3.3 urllib package - issue 10050Senthil Kumaran2012-03-141-0/+4
| * | Issue10050 - urlretrieve uses newer urlopen. reporthook of urlretrieve takes,...Senthil Kumaran2012-03-131-17/+17
| * | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-211-1/+24
| |\ \
| | * \ merge from 3.2Senthil Kumaran2012-01-211-1/+24
| | |\ \
| | | * \ merge from 3.2 - Fix Issue #13642: Unquote before b64encoding user:password d...Senthil Kumaran2012-01-141-1/+24
| | | |\ \
| | | | * \ merge from 3.2 - Fix issue 10817 - Fix urlretrieve function to raise ContentT...Senthil Kumaran2011-11-011-27/+82
| | | | |\ \
| | | | * | | Fix closes issue 1673007 urllib.request to support HEAD requests with a new m...Senthil Kumaran2011-10-161-0/+23
| | | | * | | merge from 3.2. Issue13104 - Fix urllib.request.thishost() utility function.Senthil Kumaran2011-10-061-0/+4
| | | | |\ \ \
| | | | * \ \ \ merge from 3.2 - Add the missing quote_plus call. Fix closes Issue12924Senthil Kumaran2011-09-131-0/+1
| | | | |\ \ \ \
| | | | * \ \ \ \ merge from 3.2 - Fix closes issue12698 - make the no_proxy environment variab...Senthil Kumaran2011-08-061-1/+3
| | | | |\ \ \ \ \
| | | | * \ \ \ \ \ Issue #4608: urllib.request.urlopen does not return an iterable objectRaymond Hettinger2011-06-261-1/+1
| | | | |\ \ \ \ \ \
| | | | | * \ \ \ \ \ merge from 3.2.Senthil Kumaran2011-04-141-1/+1
| | | | | |\ \ \ \ \ \
| | | | | | * \ \ \ \ \ merge from 3.2Senthil Kumaran2011-04-131-0/+10
| | | | | | |\ \ \ \ \ \
| | | | | | * \ \ \ \ \ \ Merge Issue 11662 from 3.2 branch.guido2011-03-291-1/+1
| | | | | | |\ \ \ \ \ \ \
| | | | | | | * \ \ \ \ \ \ closes issue11609. buildbot related failures in the test_urllibnet.Senthil Kumaran2011-03-201-1/+1
| | | | | | | |\ \ \ \ \ \ \
| | | | | | | | * \ \ \ \ \ \ Closes issue11563 test_urllibnet is triggering a ResourceWarning. Patch by Je...Senthil Kumaran2011-03-191-1/+6
| | | | | | | | |\ \ \ \ \ \ \
| | | | | | | | * \ \ \ \ \ \ \ #11565: Merge with 3.2.Ezio Melotti2011-03-161-1/+1
| | | | | | | | |\ \ \ \ \ \ \ \
| | | | | | | | | * | | | | | | | Normalize the encoding names for Latin-1 and UTF-8 toMarc-André Lemburg2011-02-251-1/+1
* | | | | | | | | | | | | | | | | revert the changes done for issue14826 - quoting witin Request is not desirable.Senthil Kumaran2012-07-081-5/+0
| |_|_|_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Fix issue14826 - make urllib.request.Request quoted url consistent with URLOp...Senthil Kumaran2012-07-071-0/+5
|/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-201-43/+164
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / /
| * | | | | | | | | | | | | | Fix Issue6631 - Disallow relative file paths in urllib urlopenSenthil Kumaran2012-01-211-0/+3
| |/ / / / / / / / / / / / /
| * | | | | | | | | | | | | Fix Issue #13642: Unquote before b64encoding user:password during Basic Authe...Senthil Kumaran2012-01-141-2/+31
| | |_|_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | |
| * | | | | | | | | | | | Fix issue 10817 - Fix urlretrieve function to raise ContentTooShortErrorSenthil Kumaran2011-11-011-27/+82
| | |_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | |
| * | | | | | | | | | | Issue13104 - Fix urllib.request.thishost() utility function.Senthil Kumaran2011-10-061-0/+4
| | |_|_|_|_|_|_|_|_|/ | |/| | | | | | | | |
| * | | | | | | | | | Add the quote_plus call in the test.Senthil Kumaran2011-09-131-0/+1
| | |_|_|_|_|_|_|_|/ | |/| | | | | | | |
| * | | | | | | | | Fix closes issue12698 - make the no_proxy environment variable handling a bit...Senthil Kumaran2011-08-061-1/+3
| |/ / / / / / / /
| * | | | | | | | Issue #4608: urllib.request.urlopen does not return an iterable objectRaymond Hettinger2011-06-261-2/+3
| |/ / / / / / /
| * | | | | | | merge from 3.1Senthil Kumaran2011-04-141-19/+45
| |\ \ \ \ \ \ \ | | | |_|_|_|_|/ | | |/| | | | |
| | * | | | | | merge from 3.1Senthil Kumaran2011-04-131-0/+10
| | |\ \ \ \ \ \ | | | |/ / / / / | | |/| | | | |