index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
urllib.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix merge glitch that let test_urllib fail.
Georg Brandl
2008-01-26
1
-1/+2
*
Merged revisions 60124-60142 via svnmerge from
Christian Heimes
2008-01-20
1
-13/+63
*
Remove dead code brought in by merge glitch @ r59667
Kurt B. Kaiser
2008-01-05
1
-71/+0
*
Merged revisions 59642-59665 via svnmerge from
Christian Heimes
2008-01-02
1
-1/+72
*
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum
2007-11-06
1
-13/+5
*
Merged revisions 58203-58210 via svnmerge from
Thomas Wouters
2007-09-19
1
-1/+3
*
string.maketrans() now produces translation tables for bytes.translate() -- w...
Georg Brandl
2007-08-31
1
-4/+1
*
Issue #1066: implement PEP 3109, 2/3 of PEP 3134.
Collin Winter
2007-08-31
1
-4/+4
*
Merged revisions 57620-57771 via svnmerge from
Thomas Wouters
2007-08-30
1
-1/+9
*
Revert revisions 57472, 57474, and 57477 which disabled some tests
Neal Norwitz
2007-08-30
1
-12/+2
*
Raise statement normalization in Lib/.
Collin Winter
2007-08-30
1
-11/+11
*
Get the urllib tests to pass without the email package
Neal Norwitz
2007-08-25
1
-2/+12
*
some RiscOS stuff I missed before (was only looking for "RISCOS")
Skip Montanaro
2007-08-17
1
-2/+0
*
Remove last(?) use of httplib.HTTPS, which caused test_socket_ssl to fail.
Jeremy Hylton
2007-08-16
1
-74/+27
*
Change urllib to use HTTPConnection rather than old HTTP class.
Jeremy Hylton
2007-08-04
1
-24/+35
*
SF patch# 1762940 by Joe Gregorio.
Guido van Rossum
2007-08-03
1
-9/+21
*
Make test_urllib.py pass. Mostly str/bytes issues.
Guido van Rossum
2007-07-10
1
-2/+2
*
Merged revisions 55631-55794 via svnmerge from
Guido van Rossum
2007-06-06
1
-2/+3
*
Merged revisions 55407-55513 via svnmerge from
Guido van Rossum
2007-05-22
1
-27/+1
*
Change some uses of cStringIO.StringIO to io.StringIO.
Guido van Rossum
2007-05-18
1
-16/+4
*
Merged revisions 55007-55179 via svnmerge from
Guido van Rossum
2007-05-07
1
-1/+1
*
Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'.
Guido van Rossum
2007-05-03
1
-1/+1
*
Rip out all the u"..." literals and calls to unicode().
Guido van Rossum
2007-05-02
1
-2/+2
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-1/+11
*
PEP 3114: rename .next() to .__next__() and add next() builtin.
Georg Brandl
2007-04-21
1
-2/+2
*
Remove functions in string module that are also string methods. Also remove:
Neal Norwitz
2007-04-17
1
-1/+1
*
Use input() now that it is available.
Guido van Rossum
2007-03-19
1
-4/+2
*
Fix most trivially-findable print statements.
Guido van Rossum
2007-02-09
1
-22/+22
*
Merged revisions 53451-53537 via svnmerge from
Thomas Wouters
2007-02-01
1
-2/+2
*
SF patch 1631942 by Collin Winter:
Guido van Rossum
2007-01-10
1
-6/+6
*
Merged revisions 53005-53303 via svnmerge from
Thomas Wouters
2007-01-09
1
-2/+2
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-4/+4
*
Get rid of dict.has_key(). Boy this has a lot of repercussions!
Guido van Rossum
2006-08-18
1
-1/+1
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
1
-6/+6
*
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
Thomas Wouters
2006-05-27
1
-7/+0
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-2/+2
*
Get rid of a bunch more raw_input references
Neal Norwitz
2006-03-17
1
-3/+4
*
Patch #1426648: urllib proxy_bypass broken
Georg Brandl
2006-02-18
1
-3/+10
*
Whitespace normalization.
Tim Peters
2006-01-24
1
-4/+4
*
Patch #1349118: urllib2 now supports user:pass@ style proxy
Martin v. Löwis
2006-01-24
1
-6/+93
*
Bug #649974: make docstrings for url2pathname consistent
Georg Brandl
2005-12-26
1
-0/+5
*
bug #1365984: urllib and data: URLs. Problem was that cStringIO objects canno...
Georg Brandl
2005-11-26
1
-2/+5
*
Teach unquote() to handle unicode inputs
Raymond Hettinger
2005-10-15
1
-0/+2
*
Corrected version of 1.170
Raymond Hettinger
2005-09-10
1
-6/+3
*
Revert 1.170. Add tests.
Raymond Hettinger
2005-09-10
1
-3/+6
*
Simplify and speed-up unquote().
Raymond Hettinger
2005-09-10
1
-15/+10
*
Simplify and speed-up quote_plus().
Raymond Hettinger
2005-09-10
1
-6/+3
*
SF #1285086: urllib.quote is too slow
Raymond Hettinger
2005-09-09
1
-24/+12
*
patch [ 810023 ] Fix for off-by-one bug in urllib.URLopener.retrieve
Georg Brandl
2005-08-26
1
-8/+6
*
Patch [ 1062060 ] fix for 1016880 urllib.urlretrieve silently truncates dwnld
Georg Brandl
2005-08-24
1
-1/+15
[next]