summaryrefslogtreecommitdiffstats
path: root/Doc/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge in Thomas Heller's typo fix from revision 1.13.Fred Drake2002-01-151-1/+1
|
* Adjust the instructions for building large file support so that it worksFred Drake2002-01-101-6/+4
| | | | | | more cleanly (I think this supports more Linux systems; not sure). Barry Warsaw & Martin von Loewis actually agree on this! This closes SF patch #502023.
* backport Fred's 1.58:Anthony Baxter2002-01-101-0/+13
| | | | | Added documentation of the sendall() method, and a note to the send() method that it does not guarantee that all data is sent.
* Do not mask the name of a built-in function in example code.Fred Drake2002-01-051-1/+1
| | | | Based on comment sent to python-docs.
* Fix minor typo reported in SF patch #497951.Fred Drake2002-01-051-1/+1
|
* Elaborate the descriptions for onecmd(), precmd(), and postcmd() so they areFred Drake2001-12-271-6/+19
| | | | useful. Includes one correction in the precmd() description.
* Fix wrongly-named formal parameters in three places: begin_y was used twiceFred Drake2001-12-261-76/+75
| | | | | | | | instead of begin_y and begin_x for derwin(), subpad(), and subwin(). Reported for derwin() by Eric Huss. Added class annotations for the window methods so they would be properly described in the index.
* Fix the erroneous availability annotation for s.makefile() from the lastFred Drake2001-12-221-1/+0
| | | | checkin (my fault!).
* Add notes that fromfd() and s.makefile() are Unix-specific.Fred Drake2001-12-211-8/+11
| | | | | | This fixes SF bug #495896. Fix up various markup consistency & style guide conformance nits.
* Remove extraneous "}"; possibly an incorrectly backported patch?Fred Drake2001-12-151-1/+1
|
* Add a links to the gmpy and mxNumber packages.Fred Drake2001-12-151-0/+13
|
* Document that the flag and mode arguments to dumbdbm.open() are ignored.Fred Drake2001-12-071-10/+6
|
* Describe the behavior of the read() method when the list of filenamesFred Drake2001-12-071-0/+18
| | | | | | includes files that do not exist, explain the intended use of the interface, and show how to ensure an expected file really exists. This closes SF bug #490399.
* Update the platform notes for the CGIHTTPServer module; it works on moreFred Drake2001-11-191-3/+3
| | | | | platforms now, and has since Python 2.0. This closes SF bug #482943.
* Typo: NamedNodeList --> NamedNodeMapFred Drake2001-10-251-1/+1
|
* Clarify that the resource module does not attempt to mask platformFred Drake2001-10-221-1/+3
| | | | | differences by defining symbols not defined on particular platforms. This closes SF bug #473433.
* Add deprecations for profile.HotProfile and profile.OldProfile, since theyFred Drake2001-10-191-0/+4
| | | | will no longer exist in 2.2.
* Remove lines that should never have been checked into thisFred Drake2001-08-091-9/+3
| | | | | | | | release21-maint branch; I checked them in erroneously in revision 1.52.4.1 of this file; it looks like that entire revision was operator error. This reverts that checkin and closes SF bug #449613.
* Remove some false statements.Fred Drake2001-07-191-4/+2
|
* Revise the description of time.clock() so that it correctly describes theFred Drake2001-07-161-4/+11
| | | | | | Windows version of the function as well as the Unix flavor. This fixes SF bug #441357.
* Fix return value for m.group() for groups not in the part of the RE thatFred Drake2001-07-121-1/+1
| | | | matched; reported by Paul Moore.
* Added information about the timeout parameter to the poll() method forFred Drake2001-07-111-1/+5
| | | | | | polling objects. This closes SF bug #439823. Fixed a minor markup bug.
* Explain the exit code for the wait() method, including a reference toFred Drake2001-07-061-1/+6
| | | | | | the os.W*() functions used to interpret the return value. This fixes SF bug #429361.
* The fpectl module does not work on Windows, so remove Windows from theFred Drake2001-07-051-2/+2
| | | | | | \platform statement. Also fix a minor style consistency nit in an example.
* Marked the parameters to Stats.print_*() as optional.Fred Drake2001-07-021-3/+3
| | | | This closes SF bug #438032.
* Correct a markup error for an accented character.Fred Drake2001-06-291-1/+1
| | | | Reported by Milan Zamazal <pdm@zamazal.org>.
* Removed some stray periods, and fix up a number of visible markupFred Drake2001-06-291-20/+22
| | | | | | | consistency errors (mostly omitted "()" at the end of function and method names). Reported by Milan Zamazal <pdm@zamazal.org>.
* SourceForge bug #437041:Fred Drake2001-06-291-8/+8
| | | | | Use a portable format in the example that creates a timestamp suitable for use in email, also updating it and the footnote from RFC 822 to RFC 2822.
* Simplify an example based on comment from Thomas Holenstein <thomas@hex.ch>:Fred Drake2001-06-291-4/+1
| | | | | Do not use an extra flag variable to test only once in one subsequent if statement.
* Backport Martin's checkin 1.4 (with minor fix):Thomas Wouters2001-06-271-1/+1
| | | | Fix bug #422702: Make flag argument to open optional, and document it that way.
* Updated link to zlib's home page.Fred Drake2001-06-251-3/+2
|
* Re-organize a little, clean up some markup.Fred Drake2001-06-221-52/+73
| | | | | | | Added some comments about sys.exit(), SystemExit, and preventing restricted code from exiting the interpreter. This closes SF bug #434743.
* Corrected an error in the information on supporting weak references inFred Drake2001-06-221-9/+7
| | | | | | extension types (the docs reflected a development version of the API). This closes SF bug #435066.
* Fix & clean up the information about building Python with large file supportFred Drake2001-06-221-4/+3
| | | | | | for Linux. This closes SF bug #434975.
* Properly mark the availability of tempnam() and tmpnam().Fred Drake2001-06-221-0/+3
|
* Fix an improperly placed comma.Fred Drake2001-06-141-1/+1
|
* Add the appropriate availability annotations for the popen*() family ofFred Drake2001-06-111-4/+7
| | | | | | | functions -- these are not available on traditional Mac OS platforms. Corrected the version annotations for the spawn*() functions and related constants; these were added in Python 1.6, not 1.5.2.
* Fixed parameter order for os.popen2(), os.popen3(), and os.popen(4). AddedFred Drake2001-06-111-3/+11
| | | | | | | a reference to these functions and popen() from the "Process Management" section. Based on a suggestion from comp.lang.python.
* Merge in recent changes from development branch: add warning about beingFred Drake2001-06-111-0/+11
| | | | | sure that code only runs once when using the module as both a module and a script.
* is -> if in rename descriptionSkip Montanaro2001-06-041-1/+1
|
* Document os.getenv().Fred Drake2001-05-311-0/+7
| | | | This closes SF bug #429059.
* Some general cleanup of the threading module documentation, includingFred Drake2001-05-311-25/+15
| | | | | | fixing the reference to Thread.getDeamon() (should be isDaemon()). This closes SF bug #429070.
* readlink() description: Added note that the return value may be eitherFred Drake2001-05-291-5/+20
| | | | | | | | | | absolute or relative. remove(), rename() descriptions: Give more information about the cross- platform behavior of these functions, so single-platform developers can be aware of the potential issues when writing portable code. This closes SF patch #426598.
* The parameter to the listen() method is not optional, but was marked asFred Drake2001-05-291-1/+1
| | | | | | optional in the documentation. This closes SF bug #427985.
* Add a version annotation for splitdrive(); old, but as long as I managedFred Drake2001-05-251-0/+1
| | | | to end up with the information, it is better recorded than lost.
* Add a list of mapping interface methods which are not supported byFred Drake2001-05-221-1/+4
| | | | rfc822.Message (per Barry's comments).
* Add some clarifications about the mapping interface presented byFred Drake2001-05-221-2/+4
| | | | rfc822.Message objects, based on comments from Barry.
* Fix bug in smtplib example: the prompt said to end the message with ^D,Fred Drake2001-05-201-3/+6
| | | | | | | but doing so raised EOFError. This makes it work as advertised and converts to string methods where reasonable. This closes SF bug #424776.
* Fix typo in weakref.proxy() documentation.Fred Drake2001-05-101-1/+1
| | | | This closes SF bug #423087.
* Remove all mentions of the strop module -- it has been pronounced Evil.Fred Drake2001-05-102-18/+7
| | | | | | (The string "strop" is found in the rexec documentation, but that should not be changed until strop is actually removed or rexec no longer allows it.)