index
:
delta/cpython.git
2.0
2.1
2.2
2.3
2.4
2.5
2.6
2.7
3.0
3.1
3.2
3.3
3.4
3.5
3.6
baserock/2.7.9-mips64
baserock/markdoffman/py2-symlink
baserock/markdoffman/py2-symlink-v2
baserock/morph-2.7
legacy-trunk
master
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Lib
/
urllib.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
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
*
Use cStringIO where available.
Raymond Hettinger
2004-12-31
1
-8
/
+23
*
Added a usegmt flag to email.Utils.formatdate - this allows it to be
Anthony Baxter
2004-10-11
1
-2
/
+2
*
Whitespace normalization, via reindent.py.
Tim Peters
2004-07-18
1
-1
/
+1
*
Fix for #779167: use InternetConfig proxy settings on MacOSX (in addition
Jack Jansen
2004-07-16
1
-2
/
+5
*
Replace sequential split/join calls on strings with a single replace call.
Brett Cannon
2004-03-23
1
-6
/
+2
*
Replace code in urllib for basejoin (undocumented) with urlparse.urljoin .
Brett Cannon
2004-03-23
1
-59
/
+2
*
Replace backticks with repr() or "%r"
Walter Dörwald
2004-02-12
1
-5
/
+5
*
[Bug #776542] open_https() generates a bad Authorization header because it ca...
Andrew M. Kuchling
2003-08-29
1
-1
/
+1
*
More fixes according to SF 549151:
Guido van Rossum
2003-05-16
1
-4
/
+8
*
SF Patch 549151: urllib2 POSTs on redirect
Raymond Hettinger
2003-04-24
1
-0
/
+4
*
Fix docstring for URLOpener.retrieve() in regards to opening a local file
Brett Cannon
2003-04-24
1
-1
/
+1
*
SF 698520: Iterator for urllib.URLOpener
Raymond Hettinger
2003-03-09
1
-0
/
+4
*
Get rid of many apply() calls.
Guido van Rossum
2003-02-27
1
-4
/
+4
*
Use fdopen() to create file from fd.
Jeremy Hylton
2002-10-11
1
-1
/
+1
*
When testing for localhost/ first map to lower case. Spotted by Skip.
Jack Jansen
2002-09-12
1
-1
/
+1
*
Treat file://localhost/ as local too (same as file:/ and file:///).
Jack Jansen
2002-09-12
1
-1
/
+1
*
Modify splituser() method to allow an @ in the userinfo field.
Raymond Hettinger
2002-08-18
1
-1
/
+1
*
Massive changes from SF 589982 (tempfile.py rewrite, by Zack
Guido van Rossum
2002-08-09
1
-3
/
+5
*
Fix SF #565414, FancyURLopener() needs to support **kwargs
Neal Norwitz
2002-06-11
1
-2
/
+2
*
Remove uses of the string and types modules:
Walter Dörwald
2002-06-03
1
-8
/
+9
*
Replaced boolean tests with is None.
Raymond Hettinger
2002-06-02
1
-5
/
+5
*
SF 563203. Replaced 'has_key()' with 'in'.
Raymond Hettinger
2002-06-01
1
-11
/
+11
*
Don't require Unicode support.
Guido van Rossum
2002-05-24
1
-2
/
+9
*
Fix from SF bug #541980 (Jacques A. Vidrine).
Guido van Rossum
2002-04-15
1
-1
/
+4
*
Support manual proxy configuration for simple urlopen() operations.
Fred Drake
2002-04-04
1
-5
/
+10
*
Fix for a bug in the fix for SF bug 503031. This time the OP verified
Guido van Rossum
2002-04-02
1
-2
/
+2
[next]