| Commit message (Expand) | Author | Age | Files | Lines |
* | Allow list sort's comparison function to explicitly be None. See SF patch | Skip Montanaro | 2003-01-02 | 1 | -5/+6 |
|
|
* | SF Bug 645777: list.extend() works with any iterable and is no longer | Raymond Hettinger | 2002-12-29 | 1 | -3/+1 |
|
|
* | Fixed bug | Gustavo Niemeyer | 2002-12-16 | 1 | -1/+3 |
|
|
* | Update comments about the performance of xrange(). | Raymond Hettinger | 2002-12-11 | 1 | -2/+2 |
|
|
* | Patch #646824: Remove extra \end. | Martin v. Löwis | 2002-12-03 | 1 | -1/+0 |
|
|
* | SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class | Raymond Hettinger | 2002-11-27 | 1 | -1/+8 |
|
|
* | Better note that str.zfill() was added in 2.2.2 as well. ;-( | Fred Drake | 2002-11-16 | 1 | -0/+1 |
|
|
* | Document that a minor feature was added in 2.2.2. ;-( | Fred Drake | 2002-11-16 | 1 | -0/+3 |
|
|
* | SF patch 637176: list.sort crasher | Tim Peters | 2002-11-12 | 1 | -1/+7 |
|
|
* | - The "-" format flag overrides the "0" flag, not the "-" flag. | Fred Drake | 2002-10-25 | 1 | -28/+43 |
|
|
* | Remove spurious period. | Fred Drake | 2002-09-24 | 1 | -1/+1 |
|
|
* | Extend some comments on the order of values in the returns from | Fred Drake | 2002-08-19 | 1 | -8/+14 |
|
|
* | Clarify that the bool instances are acceptable return values from | Fred Drake | 2002-08-07 | 1 | -4/+5 |
|
|
* | Document file.next(). Mark xreadlines obsolete (both method and | Guido van Rossum | 2002-08-06 | 1 | -9/+25 |
|
|
* | Committing patch #591250 which provides "str1 in str2" when str1 is a | Barry Warsaw | 2002-08-06 | 1 | -8/+13 |
|
|
* | Added new footnote about list.sort() stability. Repaired footnote about | Tim Peters | 2002-08-01 | 1 | -4/+12 |
|
|
* | Record the decision that StopIteration is a sink state (see recent | Guido van Rossum | 2002-07-16 | 1 | -0/+7 |
|
|
* | Clarify the return value of __nonzero__(): It *must* be an integer. | Fred Drake | 2002-07-12 | 1 | -3/+3 |
|
|
* | Make a start at describing the results of class/type unification | Steve Holden | 2002-06-14 | 1 | -121/+86 |
|
|
* | Use \code{True} (or False) instead of true/false. | Neal Norwitz | 2002-06-14 | 1 | -4/+4 |
|
|
* | This is my nearly two year old patch | Michael W. Hudson | 2002-06-11 | 1 | -15/+34 |
|
|
* | Jack's documentation for the U mode character on the file() | Barry Warsaw | 2002-05-22 | 1 | -0/+12 |
|
|
* | Patch 543387. Document deprecation of complex %, //,and divmod(). | Raymond Hettinger | 2002-05-21 | 1 | -4/+10 |
|
|
* | Added missing index entries for mapping methods. Closes patch #548693. | Raymond Hettinger | 2002-05-15 | 1 | -1/+7 |
|
|
* | Update the xrange object description to reflect the removal of deprecated | Fred Drake | 2002-05-02 | 1 | -3/+3 |
|
|
* | Remove extra period produced by previous change. | Fred Drake | 2002-05-02 | 1 | -3/+3 |
|
|
* | Correct information on support for repietition & concatenation for buffer | Fred Drake | 2002-05-02 | 1 | -6/+8 |
|
|
* | Add a note about when the "%r" formatting code was added. | Fred Drake | 2002-04-30 | 1 | -0/+1 |
|
|
* | Apply the second version of SF patch http://www.python.org/sf/536241 | Walter Dörwald | 2002-04-15 | 1 | -0/+6 |
|
|
* | Document the optional argument to the .strip(), .rstrip(), .strip() string | Fred Drake | 2002-04-13 | 1 | -8/+20 |
|
|
* | Add Raymond Hettinger's d.pop(). See SF patch 539949. | Guido van Rossum | 2002-04-12 | 1 | -0/+3 |
|
|
* | Update docs for bool changes by Guido around April 6 | Neal Norwitz | 2002-04-09 | 1 | -3/+3 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -10/+31 |
|
|
* | Change Windows file.truncate() to (a) restore the original file position, | Tim Peters | 2002-03-12 | 1 | -13/+18 |
|
|
* | file_truncate(): provide full "large file" support on Windows, by | Tim Peters | 2002-03-11 | 1 | -3/+2 |
|
|
* | Added index entries similar to some recommended by Skip, and used the word | Fred Drake | 2001-12-26 | 1 | -8/+12 |
|
|
* | Added documentation for str.decode(). | Fred Drake | 2001-12-10 | 1 | -0/+10 |
|
|
* | Slightly improved indexing for the string-% operator, thanks to comments | Fred Drake | 2001-12-03 | 1 | -1/+2 |
|
|
* | Make no assumption about how modules are built when referring to them; this | Fred Drake | 2001-12-03 | 1 | -4/+3 |
|
|
* | Remove most references to __members__ and __methods__, leaving only one pair | Fred Drake | 2001-12-03 | 1 | -7/+4 |
|
|
* | Clean up some markup cruft. A number of the macros that take no | Fred Drake | 2001-11-28 | 1 | -2/+2 |
|
|
* | Promote file objects out of the "Other Objects" category, so they become | Fred Drake | 2001-10-30 | 1 | -172/+172 |
|
|
* | Mention the new file() builtin in the section on file objects. | Tim Peters | 2001-10-30 | 1 | -3/+6 |
|
|
* | Explain what [].insert() does when the target index is negative. | Fred Drake | 2001-10-26 | 1 | -7/+11 |
|
|
* | Use the \note and \warning macros where appropriate. | Fred Drake | 2001-10-20 | 1 | -9/+9 |
|
|
* | The list.sort() docs require a function that returns -1, 0 or +1. That's | Tim Peters | 2001-09-29 | 1 | -1/+1 |
|
|
* | Generalize file.writelines() to allow iterable objects. | Tim Peters | 2001-09-23 | 1 | -2/+4 |
|
|
* | Note that files are iterable; describe what the iterator returns. | Fred Drake | 2001-09-22 | 1 | -0/+5 |
|
|
* | Added explanation that [...] * n generates shallow copies of [...], so | Fred Drake | 2001-08-28 | 1 | -2/+26 |
|
|
* | Describe the new semantics for setting and deleting a function's | Barry Warsaw | 2001-08-14 | 1 | -10/+5 |
|
|