Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #1410783: add documentation links for static/classmethod | Georg Brandl | 2006-01-20 | 1 | -1/+9 |
| | |||||
* | Remove dots in \version{added,changed} arguments. | Georg Brandl | 2006-01-15 | 1 | -3/+3 |
| | |||||
* | SF bug #1100368: Wrong "type()" syntax in docs | Raymond Hettinger | 2005-08-24 | 1 | -17/+21 |
| | | | | | | Docs were missing the name/bases/dict form of type(). (Much of the wording contributed by Steven Bethard.) | ||||
* | ord() documentation update; this is what remains applicable from | Fred Drake | 2005-08-23 | 1 | -4/+9 |
| | | | | | | SF patch #1057588; other changes make the rest of the patch out of date or otherwise unnecessary (backported from trunk revision 1.188) | ||||
* | SF bug #1121416: zip incorrectly and incompletely documented | Raymond Hettinger | 2005-08-21 | 1 | -4/+4 |
| | | | | sequences ==> iterables | ||||
* | backport bug [ 1250306 ] incorrect description of range function | Georg Brandl | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | [ 1243081 ] repair typos | Georg Brandl | 2005-07-22 | 1 | -1/+1 |
| | |||||
* | backport bug [ 1175022 ] property example code error | Georg Brandl | 2005-06-25 | 1 | -0/+1 |
| | |||||
* | fix description of the input range of unichr() | Fred Drake | 2005-05-25 | 1 | -1/+2 |
| | | | | (closes SF bug #1120777) | ||||
* | SF patch 1094011: Docs for file() vs open(). | Raymond Hettinger | 2005-01-07 | 1 | -3/+6 |
| | |||||
* | SF Patch #1093896: miscellaneous doc typos | Raymond Hettinger | 2005-01-01 | 1 | -1/+1 |
| | |||||
* | SF bug #1035279: hex() and oct() documentation is incorrect | Raymond Hettinger | 2004-09-30 | 1 | -13/+5 |
| | | | | | * Updated docs to reflected signed return values. * Fixed a doubled word typo. | ||||
* | Patch #1015021: Stop claiming that coerce can return None. | Martin v. Löwis | 2004-08-25 | 1 | -1/+1 |
| | | | | Will backport to 2.3. | ||||
* | SF bug #805304: super instances don't support item assignment | Raymond Hettinger | 2004-08-17 | 1 | -0/+6 |
| | | | | | | Document a nuance of super(). It is designed to work well with dotted attribute lookup but not with equivalent implicit lookups using operators or statements. | ||||
* | [Patch #1005465] Markup tweaks | Andrew M. Kuchling | 2004-08-09 | 1 | -1/+2 |
| | |||||
* | Bug 1003935: xrange overflows | Tim Peters | 2004-08-08 | 1 | -9/+15 |
| | | | | | | | | | | | | | | | Added XXX comment about why the undocumented PyRange_New() API function is too broken to be worth the considerable pain of repairing. Changed range_new() to stop using PyRange_New(). This fixes a variety of bogus errors. Nothing in the core uses PyRange_New() now. Documented that xrange() is intended to be simple and fast, and that CPython restricts its arguments, and length of its result sequence, to native C longs. Added some tests that failed before the patch, and repaired a test that relied on a bogus OverflowError getting raised. | ||||
* | Doc/lib/libfuncs.tex: correct items in itemize | Matthias Klose | 2004-08-04 | 1 | -8/+8 |
| | | | | Doc/dist/dist.tex: avoid uncommenting the verbose environment (by the py2texi tool) | ||||
* | Document general mappings for the locals argument for exec and execfile(). | Raymond Hettinger | 2004-08-03 | 1 | -7/+8 |
| | |||||
* | PEP-0318, @decorator-style. In Guido's words: | Anthony Baxter | 2004-08-02 | 1 | -2/+11 |
| | | | | | "@ seems the syntax that everybody can hate equally" Implementation by Mark Russell, from SF #979728. | ||||
* | SF bug #997533: "disjunct" should be "disjoint" | Raymond Hettinger | 2004-07-29 | 1 | -3/+3 |
| | | | | | * Use plain wording in docs for id(). * Use normal quotation marks instead of single quotes in the description. | ||||
* | SF Bug #215126: Over restricted type checking on eval() function | Raymond Hettinger | 2004-07-02 | 1 | -2/+6 |
| | | | | | | The builtin eval() function now accepts any mapping for the locals argument. Time sensitive steps guarded by PyDict_CheckExact() to keep from slowing down the normal case. My timings so no measurable impact. | ||||
* | Fix small grammatical mistake. | Brett Cannon | 2004-05-05 | 1 | -1/+1 |
| | |||||
* | concrete example of why retaining old objects is good | Skip Montanaro | 2004-03-21 | 1 | -1/+9 |
| | |||||
* | SF bug #918371: hasattr()'s return type | Raymond Hettinger | 2004-03-20 | 1 | -2/+2 |
| | | | | Replace 1 and 0 with True and False. | ||||
* | Expand on the semantics of reload(). Closes #919099. | Skip Montanaro | 2004-03-19 | 1 | -2/+24 |
| | |||||
* | fix reference to File Object documentation | Fred Drake | 2004-01-01 | 1 | -1/+3 |
| | | | | closes SF bug #825810 | ||||
* | fix markup errors | Fred Drake | 2003-12-30 | 1 | -3/+2 |
| | |||||
* | [Bug #857821] Remove mention of deprecated string.{atol,atof} functions. ↵ | Andrew M. Kuchling | 2003-12-23 | 1 | -4/+2 |
| | | | | (Patch from Gerrit Holl) | ||||
* | Guido grants a Christmas wish: | Raymond Hettinger | 2003-12-17 | 1 | -0/+9 |
| | | | | sorted() becomes a regular function instead of a classmethod. | ||||
* | Put str() in alphabetical order. | Raymond Hettinger | 2003-12-07 | 1 | -10/+10 |
| | |||||
* | - fix markup in the bool() description | Fred Drake | 2003-12-05 | 1 | -10/+9 |
| | | | | | - note the behavior of bool() with no arg in the main body of the description | ||||
* | Nits from a review of the documentation update. | Raymond Hettinger | 2003-11-26 | 1 | -1/+1 |
| | |||||
* | As discussed on python-dev, banish apply(), buffer(), coerce(), and | Raymond Hettinger | 2003-11-25 | 1 | -51/+68 |
| | | | | intern() to a separate region in the docs. | ||||
* | Patch #843088: Fix typos. Backported to 2.3. | Martin v. Löwis | 2003-11-18 | 1 | -1/+1 |
| | |||||
* | * Migrate set() and frozenset() from the sandbox. | Raymond Hettinger | 2003-11-16 | 1 | -0/+19 |
| | | | | | | | | * Install the unittests, docs, newsitem, include file, and makefile update. * Exercise the new functions whereever sets.py was being used. Includes the docs for libfuncs.tex. Separate docs for the types are forthcoming. | ||||
* | Implement and apply PEP 322, reverse iteration | Raymond Hettinger | 2003-11-06 | 1 | -0/+8 |
| | |||||
* | SF bug #821701: reduce docs neglect a very important piece of information. | Raymond Hettinger | 2003-10-13 | 1 | -1/+3 |
| | | | | Add a note showing which argument is the accumulator. | ||||
* | SF 810242. Fix doubled word errors. | Raymond Hettinger | 2003-09-22 | 1 | -1/+1 |
| | |||||
* | SF bug #560286: Add docs for 'basestring' | Raymond Hettinger | 2003-09-09 | 1 | -0/+9 |
| | |||||
* | SF bug 799191: fix markup | Raymond Hettinger | 2003-09-06 | 1 | -1/+1 |
| | |||||
* | Fix double word typos. | Raymond Hettinger | 2003-08-25 | 1 | -1/+1 |
| | |||||
* | SF patch#786531 'the the' typo. Contributed by George Yoshida | Raymond Hettinger | 2003-08-12 | 1 | -1/+1 |
| | |||||
* | As discussed on python-dev, changed builtin.zip() to handle zero arguments | Raymond Hettinger | 2003-08-02 | 1 | -4/+8 |
| | | | | by returning an empty list instead of raising a TypeError. | ||||
* | Fix SF bug #766288, property() example gives syntax error | Neal Norwitz | 2003-07-05 | 1 | -1/+1 |
| | |||||
* | SF bug #764616: execfile(filename,...) not execfile(file,...) | Raymond Hettinger | 2003-07-02 | 1 | -1/+1 |
| | | | | Clarify parameter name. | ||||
* | Fix a variety of small markup nits. | Fred Drake | 2003-07-02 | 1 | -7/+8 |
| | |||||
* | - note that super() only applies to new-style classes; | Fred Drake | 2003-07-01 | 1 | -2/+4 |
| | | | | | closes SF bug #764003 - fix markup for consistency | ||||
* | markup consistency nits | Fred Drake | 2003-06-26 | 1 | -9/+10 |
| | |||||
* | Removed useless intra-section references which jump to the top of the | Raymond Hettinger | 2003-06-25 | 1 | -4/+2 |
| | | | | section instead of the specific item being referenced. | ||||
* | Fix some markup nits | Neal Norwitz | 2003-06-17 | 1 | -4/+4 |
| |