summaryrefslogtreecommitdiffstats
path: root/Doc/lib
Commit message (Collapse)AuthorAgeFilesLines
* bug [ 1175022 ] property example code errorGeorg Brandl2005-06-251-0/+1
|
* Bug [ 1190563 ] os.waitpid docs don't specify return value for WNOHANGGeorg Brandl2005-06-251-2/+3
|
* bug [ 1202475 ] httplib docs mentioning HTTPConnection.getreplyGeorg Brandl2005-06-251-5/+10
|
* Patch [ 1213031 ] note that os.chown can have -1 as an argumentGeorg Brandl2005-06-251-1/+1
|
* correcting duplicate TeX markupGeorg Brandl2005-06-251-1/+0
|
* Bug [ 1225705 ] os.environ documentation should mention unsetenvGeorg Brandl2005-06-251-3/+22
|
* Patch #1227442: smtplib.SMTP.sendmail() accepts a string or list as to_addrs.Georg Brandl2005-06-251-7/+8
|
* Patch #1180012: add documentation for modulefinderGeorg Brandl2005-06-181-0/+1
|
* Fix nits.Raymond Hettinger2005-06-151-2/+3
|
* Missed this documentation change about my marshal-floats-binarywiseMichael W. Hudson2005-06-151-3/+4
| | | | change.
* [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-5/+14
| | | | | Make doc on specific types easier to find by listing them in the headings for the abstract types.
* fix typo. \var vs \variableGregory P. Smith2005-06-111-1/+1
|
* Clarify docs about os.popen[234].Georg Brandl2005-06-101-2/+2
|
* The functions audioop.lin2adpcm3() and audioop.adpcm32lin() were removed fromArmin Rigo2005-06-101-12/+0
| | | | this module in Jan 1994, but still documented.
* Add untokenize() function to allow full round-trip tokenization.Raymond Hettinger2005-06-101-0/+52
| | | | | | Should significantly enhance the utility of the module by supporting the creation of tools that modify the token stream and writeback the modified result.
* [Bug #1149413] 'psize' argument should be 'pgsize'Andrew M. Kuchling2005-06-081-2/+2
|
* Tweak note about using os.open to lock files if O_SHLOCK and O_EXLOCK areSkip Montanaro2005-06-081-5/+5
| | | | present.
* Add a decimal FAQRaymond Hettinger2005-06-071-2/+155
|
* Documentation clarified re. config socket listener protocolVinay Sajip2005-06-051-1/+4
|
* Bug #1210001: typo in email docGeorg Brandl2005-06-041-1/+1
|
* Correct URL to the official UnicodeData 3.2.0 resource. (ReportedHye-Shik Chang2005-06-041-1/+1
| | | | by Darek Suchojad)
* [Bug #1209880] Describe only the True/False return values from lock.acquire()Andrew M. Kuchling2005-06-022-4/+3
|
* Patch #1212117: Add optional attribute st_flags to os.stat_resultHye-Shik Chang2005-06-021-0/+1
| | | | | when the member is available on the platform. (Contributed by Diego Petteno)
* added GET/SETANNOTATION methodsPiers Lauder2005-06-011-0/+10
|
* [Bug #1105706] Use correct name for constantAndrew M. Kuchling2005-06-011-2/+2
|
* [Bug #1123268] Fix typoAndrew M. Kuchling2005-06-011-1/+1
|
* [Bug #1181939] Remove incorrect text about __init__; move map discussion ↵Andrew M. Kuchling2005-06-011-5/+4
| | | | into a separate paragraph
* [Bug #1194249] Fix duplicate assignment in example codeAndrew M. Kuchling2005-06-011-1/+1
|
* SF bug #1209411: divmod documentation shd reference // not /Raymond Hettinger2005-05-312-2/+2
|
* 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)
* Add O_SHLOCK & O_EXLOCK. Closes patch #1103951.Skip Montanaro2005-05-161-1/+5
|
* Add better datetime support to xmlrpclib module. Closes patch #1120353.Skip Montanaro2005-05-141-13/+35
|
* Incorporate a lightly edited version of the SocketServer module's docstringSkip Montanaro2005-05-121-1/+82
| | | | | into the docs and segregate the method descriptions for the various classes into separate sections. Base on suggestion by Paul Rubin in c.l.py.
* Correct swapped descriptions of empty string splits.Raymond Hettinger2005-04-191-2/+2
|
* SF patch #1180062 by George Yoshida:Walter Dörwald2005-04-142-3/+3
| | | | | 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
| | | | (backporting to release24-maint branch)
* 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 elementsRaymond 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
|
* Added threadName to LogRecordVinay Sajip2005-03-311-0/+1
|
* Minor wording fix.Michael W. Hudson2005-03-301-2/+3
|
* Mention that DEBUG_LEAK includes DEBUG_SAVEALL. Fixes #1170460.Martin v. Löwis2005-03-281-1/+3
| | | | Will backport to 2.4.
* SF #1169212: merge from 2.4 branch: fix silly typo in explaining AFMTGreg Ward2005-03-281-8/+9
| | | | | macros: U16 is unsigned and S16 is signed. Duh. Clarify surrounding text a bit and refer to OSS docs.
* Fix whitespace.Raymond Hettinger2005-03-271-1/+1
|
* SF patch #1171417: bug fix for islice() in docsRaymond Hettinger2005-03-271-9/+7
|
* correct ontosys url - closes 1167329Skip Montanaro2005-03-211-1/+1
|