| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Typo fix. | Greg Ward | 2001-07-26 | 1 | -1/+1 |
|
|
* | trivial rewording in footnote 5. | Skip Montanaro | 2001-07-25 | 1 | -2/+2 |
|
|
* | Fix up a few style nits -- avoid "e.g." and "i.e." -- these make | Fred Drake | 2001-07-06 | 1 | -18/+20 |
|
|
* | List constraints on xrange() objects. | Guido van Rossum | 2001-07-05 | 1 | -8/+14 |
|
|
* | Rip out the fancy behaviors of xrange that nobody uses: repeat, slice, | Guido van Rossum | 2001-07-05 | 1 | -6/+2 |
|
|
* | Remove the restriction on a mapping's .update() method. | Barry Warsaw | 2001-06-26 | 1 | -9/+7 |
|
|
* | Fixed reference to table notes for {}.keys() and {}.items() -- these | Fred Drake | 2001-06-12 | 1 | -4/+4 |
|
|
* | Add descriptions of {}.iteritems(), {}.iterkeys(), and {}.itervalues() | Fred Drake | 2001-05-25 | 1 | -12/+23 |
|
|
* | The general iteration support is part of 2.2, not 2.1 -- fixed the version | Fred Drake | 2001-05-03 | 1 | -2/+2 |
|
|
* | Added section describing the iterator protocol. | Fred Drake | 2001-05-02 | 1 | -0/+51 |
|
|
* | At the suggestion of Peter Funk, document 'key in dict' and 'key not | Guido van Rossum | 2001-04-23 | 1 | -6/+6 |
|
|
* | Only document <file>.xreadlines() once; added version annotation. | Fred Drake | 2001-04-22 | 1 | -7/+4 |
|
|
* | Fix a number of minor markup errors. | Fred Drake | 2001-04-21 | 1 | -2/+2 |
|
|
* | Implement, test and document "key in dict" and "key not in dict". | Guido van Rossum | 2001-04-20 | 1 | -3/+9 |
|
|
* | Updates to the semantics of function and method attributes. | Barry Warsaw | 2001-02-27 | 1 | -14/+18 |
|
|
* | Massively improved documentation for string formatting operations, | Fred Drake | 2001-01-26 | 1 | -40/+109 |
|
|
* | Document xreadlines() method. (Forgot to check this in before!) | Guido van Rossum | 2001-01-17 | 1 | -0/+4 |
|
|
* | effbot caught a typo! | Barry Warsaw | 2001-01-15 | 1 | -3/+3 |
|
|
* | Document function attributes for both the function type and the method | Barry Warsaw | 2001-01-15 | 1 | -0/+38 |
|
|
* | Added documentation for the xreadlines module & related changes. The | Fred Drake | 2001-01-09 | 1 | -6/+12 |
|
|
* | Added information about the interaction of opening a file in append mode | Fred Drake | 2001-01-04 | 1 | -1/+6 |
|
|
* | "Documentation" for {}.popitem(). | Guido van Rossum | 2000-12-12 | 1 | -0/+6 |
|
|
* | Backing out my changes. | Moshe Zadka | 2000-11-30 | 1 | -12/+0 |
|
|
* | Added .first{item,value,key}() to dictionaries. | Moshe Zadka | 2000-11-30 | 1 | -0/+12 |
|
|
* | Added information about the %r string formatting conversion. Added note | Fred Drake | 2000-11-17 | 1 | -4/+6 |
|
|
* | Document the proper exception to be raised by I/O operations on closed | Fred Drake | 2000-11-06 | 1 | -15/+19 |
|
|
* | Marc-Andre Lemburg <mal@lemburg.com> noted that the encode() string method | Fred Drake | 2000-10-25 | 1 | -0/+1 |
|
|
* | Use \obindex{...} instead of \indexii{...}{type} in many places; this is | Fred Drake | 2000-10-04 | 1 | -17/+16 |
|
|
* | Fixed a number of small problems reported by Detlef Lannert | Fred Drake | 2000-09-21 | 1 | -1/+1 |
|
|
* | Clarify that the softspace attribute is used by print for state management, | Fred Drake | 2000-09-20 | 1 | -0/+3 |
|
|
* | Clarify a number of issues about the file-like object API based on | Fred Drake | 2000-09-19 | 1 | -20/+36 |
|
|
* | Use \shortversion in a number of places. | Fred Drake | 2000-09-14 | 1 | -1/+2 |
|
|
* | Add some index entries to make it easier to find information on | Fred Drake | 2000-09-14 | 1 | -0/+5 |
|
|
* | When referring to namespaces, always say "namespaces" instead of | Fred Drake | 2000-09-12 | 1 | -1/+1 |
|
|
* | Improve a couple of references to the language reference, making them | Fred Drake | 2000-09-09 | 1 | -7/+9 |
|
|
* | As pointed out by Denis S. Otkidach <den@analyt.chem.msu.ru>, xrange() | Fred Drake | 2000-08-18 | 1 | -14/+15 |
|
|
* | Document the range type, as suggested by Denis S. Otkidach | Fred Drake | 2000-08-14 | 1 | -4/+24 |
|
|
* | Added Marc-Andre Lemburg's documentation for string methods, with some | Fred Drake | 2000-08-12 | 1 | -23/+216 |
|
|
* | Barry's patch to document the new setdefault() method. Slightly | Guido van Rossum | 2000-08-08 | 1 | -0/+8 |
|
|
* | fixing a minor spelling mistake | Peter Schneider-Kamp | 2000-08-01 | 1 | -1/+1 |
|
|
* | Stop lying about [].pop() being experimental! There is no backing it out | Fred Drake | 2000-07-31 | 1 | -4/+3 |
|
|
* | added count, extend, index, pop and remove to arraymodule | Peter Schneider-Kamp | 2000-07-31 | 1 | -2/+2 |
|
|
* | Two minor nits from Gerry Weiner (no working email address) about | Fred Drake | 2000-07-31 | 1 | -3/+3 |
|
|
* | Update version numbering from 1.6 to 2.0. | Fred Drake | 2000-06-30 | 1 | -1/+1 |
|
|