summaryrefslogtreecommitdiffstats
path: root/Doc/lib/liburllib.tex
Commit message (Collapse)AuthorAgeFilesLines
* Delete the LaTeX doc tree.Georg Brandl2007-08-151-494/+0
|
* Remove the gopherlib module. It has been raising a DeprecationWarning sinceBrett Cannon2007-05-161-8/+5
| | | | | | | Python 2.5. Also remove gopher support from urllib/urllib2. As both imported gopherlib the usage of the support would have raised a DeprecationWarning.
* [Bug #793553] Correct description of keyword arguments for SSL authenticationAndrew M. Kuchling2006-07-301-4/+4
|
* Bug #947571: By default, urllib.urlopen() does not raise IOErrorsGeorg Brandl2006-02-201-1/+8
| | | | on server error codes. Make this clear.
* Patch [ 1062060 ] fix for 1016880 urllib.urlretrieve silently truncates dwnldGeorg Brandl2005-08-241-1/+29
|
* [Bug #1194249] Fix duplicate assignment in example codeAndrew M. Kuchling2005-06-011-1/+1
|
* hmmm... moving def'n of version makes the __init__ unnecessary for theSkip Montanaro2005-03-091-2/+0
| | | | example
* Correct description/example of how to override User-agent.Skip Montanaro2005-03-091-4/+4
|
* WordsmithingAndrew M. Kuchling2004-07-131-15/+15
|
* Add another point in the "Restrictions" section about how the handling of FTPBrett Cannon2004-07-131-0/+17
| | | | | | | URLs will seemingly succeed to read a URL that points to a file whose permissions you do not have to read. Backport candidate once everyone agrees with the wording.
* Note that reading from a socket may not always return all of theFred Drake2004-03-251-0/+4
| | | | | remaining content of a stream when expected to do so. Closes SF bug #725265. Should be backported to Python 2.3.x.
* remove extra word occurance; reported to webmasterFred Drake2003-08-271-1/+1
|
* Patch 549151, rev4: redirect posts for 301 also. Will backport to 2.2.Martin v. Löwis2003-07-121-6/+6
|
* Add comment that urlopen opens local files without universal newlinesBrett Cannon2003-04-291-8/+8
|
* Add cross-references between urllib.urlencode() and cgi.parse_qs[l]().Fred Drake2003-04-241-0/+3
| | | | Closes SF bug #724751.
* SF Patch 549151: urllib2 POSTs on redirectRaymond Hettinger2003-04-241-6/+12
| | | | (contributed by John J Lee)
* Fixed docs for urlretrieve() to match code in the case of opening a local file.Brett Cannon2003-04-241-13/+13
| | | | Also some typos and removed trailing whitespace on the lines.
* SF 698520: Iterator for urllib.URLOpenerRaymond Hettinger2003-03-091-1/+2
| | | | Contributed by Brett Cannon.
* Moved description of _urlopener adjacent to the related functions.Fred Drake2002-10-221-18/+35
| | | | | | | Added missing import to example code. Added documentation for pathname2url(), url2pathname(). Closes SF bug #623196.
* Add a version annotation regarding the urlopen(proxies={...}).Fred Drake2002-04-041-0/+2
|
* The rest of the documentation for manual proxy configuration for a basicFred Drake2002-04-041-3/+20
| | | | | urlopen(). This is part of SF patch #523415.
* Documentation for manual proxy configuration, by Andy Gimblett.Fred Drake2002-04-041-0/+35
| | | | This closes SF patch #523415.
* Use the \note and \warning macros where appropriate.Fred Drake2001-10-201-2/+2
|
* SF patch #454553 by Walter Dörwald: auto-guess content-type header forGuido van Rossum2001-08-231-1/+2
| | | | ftp urls.
* Apply the new \mailheader macro where appropriate, and fix a few smallFred Drake2001-08-031-9/+10
| | | | markup inconsistencies.
* Convert the use of apply(f, args) to the new spelling: f(*args).Fred Drake2001-07-231-1/+1
| | | | This is part of SF patch #443788.
* Minor changes to match the style guide.Fred Drake2001-07-141-3/+3
|
* Added warning that FancyURLopener prompts the user on the terminal whenFred Drake2001-04-121-0/+21
| | | | | | | | basic authentication is needed. Added documentation for FancyURLopener.prompt_user_passwd(), explaining that subclasses should provide more appropriate behavior for the hosting environment.
* mention the use of the maxtries attribute of FancyURLopener in boundingSkip Montanaro2001-02-151-1/+3
| | | | redirection recursion.
* updated to document use of sequences of two-element tuples as inputsSkip Montanaro2001-01-281-2/+7
|
* documented (new) optional doseq parameter to urlencode.Skip Montanaro2001-01-241-2/+4
|
* urlretrieve() description included explanation of "data" parameter, butFred Drake2000-12-151-4/+5
| | | | | | did not include it in the signature. Fixed some markup nits.
* Remove duplicated text from urlopen() description, noted by Ka-PingFred Drake2000-10-101-16/+0
| | | | Yee <ping@lfw.org> and probably others as well.
* Add item to the list of limitations that points out the lack of supportFred Drake2000-09-151-1/+5
| | | | | | | | | for authenticated proxies. This is noted elsewhere, but this makes it easier to find. Fix typo where it was already mentioned. This closes SourceForge bug #110619.
* Document the limitation that urllib does not work with proxies whichFred Drake2000-08-311-5/+9
| | | | | | | require authenication. This is an implementation limitation rather than required behavior, and may be fixed in the future. This closes SourceForge bug #111725.
* Revised documentation relevant to SourceForge patch #100837Fred Drake2000-08-251-12/+23
| | | | | | (simplify making HTTP POST requests). Added documentation of URLopener.version and how it can be overridden.
* Addresses the other half of Bug #112634 -- the documentation suggestedGuido van Rossum2000-08-241-1/+1
| | | | | | | that you can set self.version *after* calling the base class __init__. In fact it must be done *before*. (Fred, maybe the version class variable should be documented now?)
* Moshe Zadka <moshez@math.huji.ac.il>:Fred Drake2000-08-241-0/+12
| | | | | | | Documentation updates for urlretrieve() and URLopener.retrieve(), to reflect Randall Hopper's patch for those functions. This closes SourceForge patch #100837.
* Finally fixed the much-reported bug about "~" in a couple of example.Fred Drake2000-07-281-2/+2
| | | | This time, it was reported by Skip.
* Rob W. W. Hooft's spelling fixes for the Library Reference. I hopeThomas Wouters2000-07-161-1/+1
| | | | | | | | | SourceForge doesn't choke on this batch :-) I'm not entirely sure this is 100% correct. The patch changes an \index{persistency} to \index{presistence}, and I don't know what \index{} does. But it seems to do so persi--er, consistently, so I hope it isn't a problem.
* Fixed typo noted by Guido Kollerie <gkoller@cs.vu.nl> in example code.Fred Drake2000-05-301-1/+1
|
* Merged changes from the 1.5.2p2 release.Fred Drake2000-04-031-3/+140
| | | | (Very rough.)
* Incorporated updates to describe geturl() by Sjoerd MullenderFred Drake1999-02-221-15/+20
| | | | <Sjoerd.Mullender@cwi.nl>.
* Remove extra } at end of method description parameters.Fred Drake1998-10-011-6/+7
|
* Document new urllib features by Eric Raymond.Guido van Rossum1998-09-281-5/+22
|
* New section header style.Fred Drake1998-08-101-1/+2
| | | | Fix up a few synopses.
* Adjusted to use the new module synopsis support macros.Fred Drake1998-07-231-2/+4
|
* # Oops, correct Latex errors.Guido van Rossum1998-07-221-2/+2
|
* Document how to make a POST request with urlopen().Guido van Rossum1998-07-221-6/+25
| | | | | | | Change the argument name for quote() and quote_plus() to safe (which matches the implementation). Add doc for the *new* function urlencode().
* Remove all uses of \sectcode; we can now use logical markup everywhere.Fred Drake1998-04-041-1/+1
|