Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | * Added missing documentation for object(). | Raymond Hettinger | 2003-06-11 | 1 | -2/+15 |
| | | | | * Noted the Py2.3 in the optional arg for bool(). | ||||
* | SF bug #660022: parameters for int(), str(), etc. | Raymond Hettinger | 2003-06-11 | 1 | -19/+28 |
| | | | | | | * Indicate that arguments are optional for most builtin type constructors. * Replace e.g. in staticmethod() and classmethod() docs. * Add \code{} markup to some in-line code examples. | ||||
* | SF bug: 751941 Invisible HTML tag | Raymond Hettinger | 2003-06-10 | 1 | -0/+2 |
| | | | | Added missing jump target labels. | ||||
* | Patch #744877: Explain filter in terms of list comprehension. Remove | Martin v. Löwis | 2003-05-31 | 1 | -3/+8 |
| | | | | | explanation of int in terms of string.atoi. Explain sum in terms of reduce. | ||||
* | - object is a class type, not a function | Fred Drake | 2003-05-10 | 1 | -3/+4 |
| | | | | | - when marking a function, the trailing () should be included consistently | ||||
* | Missing parenthesis found by texcheck.py | Raymond Hettinger | 2003-05-10 | 1 | -1/+1 |
| | |||||
* | - explain the start argument to sum() | Fred Drake | 2003-04-22 | 1 | -5/+6 |
| | | | | - various adjustments to sum() markup and explanation | ||||
* | Adding new built-in function sum, with docs and tests. | Alex Martelli | 2003-04-22 | 1 | -0/+8 |
| | |||||
* | Change the treatment of positions returned by PEP293 | Walter Dörwald | 2003-01-31 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | error handers in the Unicode codecs: Negative positions are treated as being relative to the end of the input and out of bounds positions result in an IndexError. Also update the PEP and include an explanation of this in the documentation for codecs.register_error. Fixes a small bug in iconv_codecs: if the position from the callback is negative *add* it to the size instead of substracting it. From SF patch #677429. | ||||
* | SF bug #655271: Slightly modify locals() doc | Raymond Hettinger | 2003-01-04 | 1 | -1/+1 |
| | | | | Clarify the operation of locals(). | ||||
* | Document that apply() is deprecated. See: | Fred Drake | 2003-01-02 | 1 | -0/+3 |
| | | | | http://mail.python.org/pipermail/python-dev/2003-January/031556.html | ||||
* | Fix SF # 641111, Undocumented side effect of eval | Neal Norwitz | 2002-12-17 | 1 | -1/+6 |
| | | | | | | | | Try to clear up confusion about the current globals being copied into a globals dict passed to eval(). This wording (more or less) was suggested in bug report. It should probably be made clearer. Backport candidate. | ||||
* | Fix SF #642742, property() builtin not documented | Neal Norwitz | 2002-12-17 | 1 | -0/+78 |
| | | | | | | | | Added doc for functions new to 2.2: classmethod property staticmethod super Taken from docstrings. Could use review. Hope there wasn't a reason why these shouldn't have been added. Backport candidate. | ||||
* | Enhance issubclass() and PyObject_IsSubclass() so that a tuple is | Walter Dörwald | 2002-12-12 | 1 | -5/+7 |
| | | | | | | | | | | | supported as the second argument. This has the same meaning as for isinstance(), i.e. issubclass(X, (A, B)) is equivalent to issubclass(X, A) or issubclass(X, B). Compared to isinstance(), this patch does not search the tuple recursively for classes, i.e. any entry in the tuple that is not a class, will result in a TypeError. This closes SF patch #649608. | ||||
* | Added change note about returning a dictionary based on keyword | Fred Drake | 2002-11-23 | 1 | -0/+2 |
| | | | | arguments. | ||||
* | Patch #642500 with slight modifications: allow keyword arguments in | Just van Rossum | 2002-11-23 | 1 | -14/+21 |
| | | | | | | | dict() constructor. Example: >>> dict(a=1, b=2) {'a': 1, 'b': 2} >>> | ||||
* | Change int() so that passing a string, unicode, float or long argument | Walter Dörwald | 2002-11-19 | 1 | -0/+2 |
| | | | | | | | that is outside the integer range no longer raises OverflowError, but returns a long object instead. This fixes SF bug http://www.python.org/sf/635115 | ||||
* | Update example for the type() function to use the currently accepted | Fred Drake | 2002-11-01 | 1 | -2/+13 |
| | | | | | | | preference of using "is" instead of "==" to compare types, use built-in names where available, and point to the isinstance() function. Closes SF bug #632196. | ||||
* | Modify example to use string methods instead of the string module. | Fred Drake | 2002-10-22 | 1 | -4/+2 |
| | |||||
* | Another try at clarifying what goes into and comes out of Unicode objects. | Fred Drake | 2002-09-24 | 1 | -4/+0 |
| | |||||
* | Clarify that len() of a Unicode string returns the number of storage units, | Fred Drake | 2002-09-24 | 1 | -0/+4 |
| | | | | not abstract characters. | ||||
* | Fix typo | Raymond Hettinger | 2002-09-04 | 1 | -1/+1 |
| |