Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Delete the LaTeX doc tree. | Georg Brandl | 2007-08-15 | 1 | -1345/+0 |
| | |||||
* | Fix markup | Raymond Hettinger | 2007-04-24 | 1 | -1/+1 |
| | |||||
* | Lots of explicit class names for method and member descs. | Georg Brandl | 2007-04-01 | 1 | -2/+2 |
| | |||||
* | RFE #1670167: fix in isinstance() docs. | Georg Brandl | 2007-03-16 | 1 | -2/+3 |
| | |||||
* | Patch #1444529: the builtin compile() now accepts keyword arguments. | Georg Brandl | 2007-03-13 | 1 | -5/+5 |
| | | | | (backport) | ||||
* | Backport from Py3k branch: | Georg Brandl | 2007-03-12 | 1 | -20/+39 |
| | | | | | | | Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. Had to change a few bits of the patch because classobjs and __methods__ are still in Py2.6. | ||||
* | Do not copy free variables to locals in class namespaces. | Jeremy Hylton | 2007-02-26 | 1 | -0/+5 |
| | | | | | | | | | Fixes bug 1569356, but at the cost of a minor incompatibility in locals(). Add test that verifies that the class namespace is not polluted. Also clarify the behavior in the library docs. Along the way, cleaned up the dict_to_map and map_to_dict implementations and added some comments that explain what they do. | ||||
* | Some other built-in functions are described with 'sequence' arguments | Andrew M. Kuchling | 2006-12-20 | 1 | -38/+38 |
| | | | | | | that should really be 'iterable'; this commit changes them. Did I miss any? Did I introduce any errors? | ||||
* | [Bug #1619674] Make sum() use the term iterable, not sequence | Andrew M. Kuchling | 2006-12-20 | 1 | -5/+5 |
| | |||||
* | Bug #1575746: fix typo in property() docs. | Georg Brandl | 2006-10-12 | 1 | -1/+1 |
| | |||||
* | lots of markup nits, most commonly Unix/unix --> \UNIX | Fred Drake | 2006-07-30 | 1 | -1/+1 |
| | |||||
* | Reorganize the docs for 'file' and 'open()' after some discussion with Fred. | Andrew M. Kuchling | 2006-07-29 | 1 | -63/+74 |
| | | | | | | | | | | | | | | | | | We want to encourage users to write open() when opening a file, but open() was described with a single paragraph and 'file' had lots of explanation of the mode and bufsize arguments. I've shrunk the description of 'file' to cross-reference to the 'File objects' section, and to open() for an explanation of the arguments. open() now has all the paragraphs about the mode string. The bufsize argument was moved up so that it isn't buried at the end; now there's 1 paragraph on mode, 1 on bufsize, and then 3 more on mode. Various other edits and rearrangements were made in the process. It's probably best to read the final text and not to try to make sense of the diffs. | ||||
* | no need to elaborate "string". | Georg Brandl | 2006-07-05 | 1 | -1/+1 |
| | |||||
* | Patch #1517490: fix glitches in filter() docs. | Georg Brandl | 2006-07-05 | 1 | -4/+4 |
| | |||||
* | [Bug #1511911] Clarify description of optional arguments to sorted() | Andrew M. Kuchling | 2006-07-03 | 1 | -2/+24 |
| | | | | | by improving the xref to the section on lists, and by copying the explanations of the arguments (with a slight modification). | ||||
* | - consistency nit: always include "()" in \function and \method | Fred Drake | 2006-06-30 | 1 | -8/+8 |
| | | | | | (*should* be done by the presentation, but that requires changes all over) - avoid spreading the __name meme | ||||
* | Document decorator usage of property. | Georg Brandl | 2006-06-30 | 1 | -1/+16 |
| | |||||
* | Bug #1462152: file() now checks more thoroughly for invalid mode | Georg Brandl | 2006-05-18 | 1 | -1/+7 |
| | | | | | strings and removes a possible "U" before passing the mode to the C library function. | ||||
* | SF #1479181: split open() and file() from being aliases for each other. | Neal Norwitz | 2006-05-02 | 1 | -7/+5 |
| | |||||
* | Accept keyword arguments for __import__ and doc the addition of the level ↵ | Neal Norwitz | 2006-04-03 | 1 | -3/+12 |
| | | | | param from PEP 328. | ||||
* | object() is a function, not a base class. | Georg Brandl | 2006-03-31 | 1 | -1/+1 |
| | |||||
* | Add a note about pow(x,y) equalling x**y (the "**" operator | Georg Brandl | 2006-03-21 | 1 | -2/+5 |
| | | | | was used unmotivated in the pow() docs) | ||||
* | Patch #1434038: property() now uses the getter's docstring if there is | Georg Brandl | 2006-03-08 | 1 | -0/+5 |
| | | | | | no "doc" argument given. This makes it possible to legitimately use property() as a decorator to produce a read-only property. | ||||
* | Patch #1410783: add documentation links for static/classmethod | Georg Brandl | 2006-01-20 | 1 | -1/+9 |
| | |||||
* | Remove dots in \version{changed,added} argument and | Georg Brandl | 2006-01-15 | 1 | -3/+3 |
| | | | | correct argument order. | ||||
* | 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 | ||||
* | SF bug #1121416: zip incorrectly and incompletely documented | Raymond Hettinger | 2005-08-21 | 1 | -4/+4 |
| | | | | sequences ==> iterables | ||||
* | 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 |
| | |||||
* | bug [ 1175022 ] property example code error | Georg Brandl | 2005-06-25 | 1 | -0/+1 |
| | |||||
* | SF bug #1209411: divmod documentation shd reference // not / | Raymond Hettinger | 2005-05-31 | 1 | -1/+1 |
| | |||||
* | fix description of the input range of unichr() | Fred Drake | 2005-05-25 | 1 | -1/+2 |
| | | | | (closes SF bug #1120777) | ||||
* | Fill-in missing argspec. | Raymond Hettinger | 2005-03-19 | 1 | -1/+1 |
| | |||||
* | Add two new functions, any() and all(). | Raymond Hettinger | 2005-03-11 | 1 | -0/+26 |
| | |||||
* | 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 |
| | |||||
* | Hyphenate 'one-argument' | Andrew M. Kuchling | 2004-12-03 | 1 | -2/+2 |
| | |||||
* | SF patch #1077353: add key= argument to min and max | Raymond Hettinger | 2004-12-03 | 1 | -1/+13 |
| | | | | (First draft of patch contributed by Steven Bethard.) | ||||
* | 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 |
| |