Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Bug #1209880] Describe only the True/False return values from lock.acquire() | Andrew M. Kuchling | 2005-06-02 | 2 | -4/+3 |
| | |||||
* | [Bug #1193001] Make the notation section use the same productionlist env. as ↵ | Andrew M. Kuchling | 2005-06-02 | 1 | -5/+5 |
| | | | | other grammar rules | ||||
* | Patch #1212117: Add optional attribute st_flags to os.stat_result | Hye-Shik Chang | 2005-06-02 | 1 | -0/+1 |
| | | | | | when the member is available on the platform. (Contributed by Diego Petteno) | ||||
* | added GET/SETANNOTATION methods | Piers Lauder | 2005-06-01 | 1 | -0/+10 |
| | |||||
* | [Bug #1105706] Use correct name for constant | Andrew M. Kuchling | 2005-06-01 | 1 | -2/+2 |
| | |||||
* | [Bug #1123268] Fix typo | Andrew M. Kuchling | 2005-06-01 | 1 | -1/+1 |
| | |||||
* | [Bug #1181939] Remove incorrect text about __init__; move map discussion ↵ | Andrew M. Kuchling | 2005-06-01 | 1 | -5/+4 |
| | | | | into a separate paragraph | ||||
* | [Bug #1194249] Fix duplicate assignment in example code | Andrew M. Kuchling | 2005-06-01 | 1 | -1/+1 |
| | |||||
* | SF bug #1209411: divmod documentation shd reference // not / | Raymond Hettinger | 2005-05-31 | 2 | -2/+2 |
| | |||||
* | SF bug #1202395: Description of string.lstrip() needs improvement | Raymond Hettinger | 2005-05-31 | 1 | -15/+33 |
| | | | | Clarify the role of the chars argument in the strip() methods. | ||||
* | SF bug #1209671: dict.popitem documentation should mention empty dict case | Raymond Hettinger | 2005-05-27 | 1 | -1/+2 |
| | |||||
* | Fix: | Michael W. Hudson | 2005-05-26 | 1 | -0/+2 |
| | | | | | | | [ 1207501 ] Issue in grammar We didn't define dotted_name in the pseudo-grammar in the reference docs. Backport candidate. | ||||
* | fix description of the input range of unichr() | Fred Drake | 2005-05-25 | 1 | -1/+2 |
| | | | | (closes SF bug #1120777) | ||||
* | update documentation on what constitutes a line in a source file | Fred Drake | 2005-05-25 | 1 | -5/+12 |
| | | | | (closes SF bug #1167922) | ||||
* | Add O_SHLOCK & O_EXLOCK. Closes patch #1103951. | Skip Montanaro | 2005-05-16 | 1 | -1/+5 |
| | |||||
* | Add better datetime support to xmlrpclib module. Closes patch #1120353. | Skip Montanaro | 2005-05-14 | 1 | -13/+35 |
| | |||||
* | SF bug #1201807: Glossary listing bug | Raymond Hettinger | 2005-05-14 | 1 | -1/+1 |
| | |||||
* | Incorporate a lightly edited version of the SocketServer module's docstring | Skip Montanaro | 2005-05-12 | 1 | -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. | ||||
* | SF bug #1190451: 6.9 First sentence is confusing | Raymond Hettinger | 2005-04-28 | 1 | -7/+8 |
| | | | | | | | * Fixed incorrect wording: expression->exception * Noted the specific exception reported by "raise" when the is nothing to re-raise. * Eliminated several instances of "e.g." as recommended in the style guide. | ||||
* | Fix | Michael W. Hudson | 2005-04-27 | 1 | -2/+2 |
| | | | | | | [ python-Bugs-1190599 ] dir() docs show incorrect output though not entirely how it's suggested in the bug report. | ||||
* | Fix typo. | Raymond Hettinger | 2005-04-26 | 1 | -1/+1 |
| | |||||
* | Correct swapped descriptions of empty string splits. | Raymond Hettinger | 2005-04-19 | 1 | -2/+2 |
| | |||||
* | SF patch #1180062 by George Yoshida: | Walter Dörwald | 2005-04-14 | 2 | -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 argument | Fred Drake | 2005-04-13 | 1 | -2/+2 |
| | | | | (backporting to release24-maint branch) | ||||
* | SF bug #1180392: StringIO's docs should mention overwriting of initial value | Raymond Hettinger | 2005-04-11 | 1 | -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 elements | Raymond Hettinger | 2005-04-10 | 2 | -1/+7 |
| | |||||
* | Fill out one section | Andrew M. Kuchling | 2005-04-09 | 1 | -3/+20 |
| | |||||
* | Add more text | Andrew M. Kuchling | 2005-04-09 | 1 | -7/+29 |
| | |||||
* | Add grammar change for allowing ``class B(): pass`` syntax. | Brett Cannon | 2005-04-09 | 1 | -1/+1 |
| | |||||
* | SF bug #1178269 Clarify when isMappingType/isSequenceType is True. | Raymond Hettinger | 2005-04-07 | 1 | -3/+5 |
| | |||||
* | SF bug #1178255: 256 should read 255 in operator module docs | Raymond Hettinger | 2005-04-07 | 1 | -1/+1 |
| | |||||
* | Added threadName to LogRecord | Vinay Sajip | 2005-03-31 | 1 | -0/+1 |
| | |||||
* | Minor wording fix. | Michael W. Hudson | 2005-03-30 | 1 | -2/+3 |
| | |||||
* | add 2.4.1 to the release history | Fred Drake | 2005-03-29 | 1 | -0/+1 |
| | |||||
* | Mention that DEBUG_LEAK includes DEBUG_SAVEALL. Fixes #1170460. | Martin v. Löwis | 2005-03-28 | 1 | -1/+3 |
| | | | | Will backport to 2.4. | ||||
* | SF #1169212: merge from 2.4 branch: fix silly typo in explaining AFMT | Greg Ward | 2005-03-28 | 1 | -8/+9 |
| | | | | | macros: U16 is unsigned and S16 is signed. Duh. Clarify surrounding text a bit and refer to OSS docs. | ||||
* | Fix whitespace. | Raymond Hettinger | 2005-03-27 | 1 | -1/+1 |
| | |||||
* | SF patch #1171417: bug fix for islice() in docs | Raymond Hettinger | 2005-03-27 | 1 | -9/+7 |
| | |||||
* | Function signatures for tp_descr_get and tp_descr_set. | Thomas Heller | 2005-03-24 | 1 | -1/+15 |
| | |||||
* | clean up the underscore mess for the typeset formats so that subscripts | Fred Drake | 2005-03-24 | 4 | -28/+256 |
| | | | | work in math displays (thanks to Bo Peng on the Doc-SIG) | ||||
* | Fix typo. | Walter Dörwald | 2005-03-23 | 1 | -1/+1 |
| | |||||
* | - fix markup bugs | Fred Drake | 2005-03-22 | 1 | -5/+14 |
| | | | | | - more consistent markup - elaborate a couple of points | ||||
* | Add the upload command. Make all dist commands register their | Martin v. Löwis | 2005-03-21 | 1 | -0/+35 |
| | | | | outputs with the distribution object. | ||||
* | correct ontosys url - closes 1167329 | Skip Montanaro | 2005-03-21 | 1 | -1/+1 |
| | |||||
* | fix obscure markup error, wrapping a long line | Fred Drake | 2005-03-21 | 1 | -2/+2 |
| | |||||
* | fix environment broken in revision 1.6 | Fred Drake | 2005-03-21 | 1 | -0/+1 |
| | |||||
* | PEP 314 implementation (client side): | Fred Drake | 2005-03-20 | 2 | -0/+84 |
| | | | | added support for the provides, requires, and obsoletes metadata fields | ||||
* | Write part of PEP 309 section | Andrew M. Kuchling | 2005-03-20 | 1 | -1/+22 |
| | |||||
* | Describe how to get back lib-old; if this isn't the best way, please let me know | Andrew M. Kuchling | 2005-03-20 | 1 | -1/+14 |
| | |||||
* | Add item | Andrew M. Kuchling | 2005-03-20 | 1 | -1/+11 |
| |