summaryrefslogtreecommitdiffstats
path: root/Doc/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* backport [ 1190563 ] os.waitpid docs don't specify return value for WNOHANGGeorg Brandl2005-06-251-2/+3
|
* backport bug [ 1202475 ] httplib docs mentioning HTTPConnection.getreplyGeorg Brandl2005-06-251-5/+10
|
* backport patch [ 1213031 ] note that os.chown can have -1 as an argumentGeorg Brandl2005-06-251-1/+1
|
* backport of bug [ 1225705 ] os.environ documentation should mention unsetenvGeorg Brandl2005-06-251-3/+21
|
* backport Patch #1227442: smtplib.SMTP.sendmail() accepts list or string for ↵Georg Brandl2005-06-251-7/+8
| | | | to_addrs.
* Patch #1180012: add documentation for modulefinder (backport)Georg Brandl2005-06-181-0/+1
|
* Fix nits.Raymond Hettinger2005-06-151-2/+3
|
* [Bug #1219862] Document correct argument range for pair_content()Andrew M. Kuchling2005-06-141-1/+1
|
* SF bug #1215887: String and list methods documentation deeply hiddenRaymond Hettinger2005-06-141-6/+15
| | | | | Make doc on specific types easier to find by listing them in the headings for the abstract types.
* Backport 1.26 Decimal FAQ.Raymond Hettinger2005-06-121-2/+155
|
* Clarify docs about os.popen[234].Georg Brandl2005-06-101-2/+2
|
* [Bug #1149413] 'psize' argument should be 'pgsize'Andrew M. Kuchling2005-06-081-2/+2
|
* Bug #1210001: typo in email docsGeorg Brandl2005-06-041-1/+1
|
* [Bug #1209880] Describe only the True/False return values from lock.acquire()Andrew M. Kuchling2005-06-022-4/+3
|
* [Bug #1105706] Use correct name for constantAndrew M. Kuchling2005-06-011-2/+2
|
* [Bug #1123268] Fix typoAndrew M. Kuchling2005-06-011-1/+1
|
* [Bug #1194249] Fix duplicate assignment in example codeAndrew M. Kuchling2005-06-011-1/+1
|
* SF bug #1202395: Description of string.lstrip() needs improvementRaymond Hettinger2005-05-311-15/+33
| | | | Clarify the role of the chars argument in the strip() methods.
* SF bug #1209671: dict.popitem documentation should mention empty dict caseRaymond Hettinger2005-05-271-1/+2
|
* fix description of the input range of unichr()Fred Drake2005-05-251-1/+2
| | | | (closes SF bug #1120777)
* backport from headSkip Montanaro2005-05-121-1/+82
|
* Correct swapped descriptions of empty string splits.Raymond Hettinger2005-04-191-2/+2
|
* Backport relevant part of checkin:Walter Dörwald2005-04-141-2/+2
| | | | | | SF patch #1180062 by George Yoshida: (Doc/lib/libfunctional.tex: "in an new object" should read "in a new object") Doc/lib/libsubprocess.tex: argument name is wrong; comma is missing
* get_method() returns a method name, not take it as an argumentFred Drake2005-04-131-2/+2
| | | | (backported from trunk revision 1.22)
* SF bug #1180392: StringIO's docs should mention overwriting of initial valueRaymond Hettinger2005-04-111-0/+1
| | | | | * Added a note that the initial file position is zero even if the object is freshly initialized.
* SF bug #1179957: Missing def'n of equality for set elementRaymond Hettinger2005-04-102-1/+7
|
* SF bug #1178269 Clarify when isMappingType/isSequenceType is True.Raymond Hettinger2005-04-071-3/+5
|
* SF bug #1178255: 256 should read 255 in operator module docsRaymond Hettinger2005-04-071-1/+1
|
* Corrected SMTPHandler docs and added info about threadName attribute of ↵Vinay Sajip2005-03-311-2/+2
| | | | LogRecord
* Mention that DEBUG_LEAK includes DEBUG_SAVEALL. Fixes #1170460.Martin v. Löwis2005-03-281-1/+3
|
* SF #1169212: fix silly typo in explaining AFMT macros: U16 is unsignedGreg Ward2005-03-281-8/+9
| | | | | and S16 is signed. Duh. Clarify surrounding text a bit and refer to OSS docs.
* SF patch #1171417: bug fix for islice() in docsRaymond Hettinger2005-03-271-8/+6
|
* correct ontosys url - closes 1167329Skip Montanaro2005-03-211-1/+1
|
* SF #1086675: restore "Extending optparse" section (which was droppedGreg Ward2005-03-191-0/+244
| | | | in Python 2.4).
* Regenerate from Optik reST source to ensure CVS Id tags are up-to-date.Greg Ward2005-03-191-1/+1
|
* List all option attributes (closes SF #993601).Greg Ward2005-03-191-0/+81
|
* Beef up optparse reference docs -- now much closer to documenting theGreg Ward2005-03-191-55/+198
| | | | | full API of Optik 1.5a2 (which is what's included with Python 2.4.x). Closes SF #1099324, partially addresses SF #993601.
* Fix test_socket's test for socket.getfqdn() to also accept the result fromBrett Cannon2005-03-121-2/+2
| | | | | | socket.gethostname() as a valid return value. Also clarified the docs as they were a little hazy on the subject matter.
* backportSkip Montanaro2005-03-091-2/+0
|
* backport from headSkip Montanaro2005-03-091-4/+4
|
* SF #818006: revert addition of 'closed', 'mode', and 'name' attributesGreg Ward2005-03-091-16/+1
| | | | to oss_audio_device objects.
* SF #818006: add useful read-only attributes to oss_audio_device object:Greg Ward2005-03-071-1/+16
| | | | | 'closed', 'name', and 'mode' (as recommended by http://python.org/doc/current/lib/bltin-file-objects.html).
* minor edits:Fred Drake2005-03-031-3/+4
| | | | | | - function names marked with \function should include parentheses - "standard error" instead of "stderr" for text - a boolean parameter takes true or false values, not just True or False
* Document quiet parameter to decode. Fixes #803413.Martin v. Löwis2005-03-031-1/+5
|
* Backport the non-spwd part of the change on head.Skip Montanaro2005-03-021-2/+3
|
* Document missing opcodes.Raymond Hettinger2005-02-211-0/+8
|
* Update refences to "Macintosh" to reflect the state of affairs for OS X and notBrett Cannon2005-02-134-84/+83
| | | | | | Mac OS 9. Backport of patch #1095802.
* SF bug #1119700: list extend() accepts args besides listsRaymond Hettinger2005-02-091-1/+1
|
* Security fix PSF-2005-001 for SimpleXMLRPCServer.py.Guido van Rossum2005-02-031-2/+17
|
* Backport for bug #1108490: fix broken link.Johannes Gijsbers2005-01-291-1/+1
|