Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SF patch #834444: add versionadd to new functions | Raymond Hettinger | 2003-11-02 | 1 | -0/+2 |
| | | | | (Contributed by George Yoshida.) | ||||
* | [Bug #817178] Fix incorrect arguments in example, noted by Terry Reedy | Andrew M. Kuchling | 2003-10-31 | 1 | -1/+1 |
| | |||||
* | Patch #830858: Correct the number of is-functions. Backported to 2.3 and 2.2. | Martin v. Löwis | 2003-10-31 | 1 | -1/+1 |
| | |||||
* | Patch #531629: Add multicall support. | Martin v. Löwis | 2003-10-31 | 1 | -0/+29 |
| | |||||
* | Patch #: Add POP3 over SSL support. | Martin v. Löwis | 2003-10-31 | 1 | -2/+18 |
| | |||||
* | Fix typo. | Raymond Hettinger | 2003-10-30 | 1 | -1/+1 |
| | |||||
* | Minor grammatical fix. | Brett Cannon | 2003-10-30 | 1 | -1/+1 |
| | |||||
* | Add list.sorted() classmethod. | Raymond Hettinger | 2003-10-29 | 1 | -4/+11 |
| | |||||
* | SF bug #827902: ctime is not creation time | Raymond Hettinger | 2003-10-29 | 1 | -2/+3 |
| | | | | New fix for this bug recognizes differing definitions on various systems. | ||||
* | Documented gc.get_referrers() as dangerous. | Armin Rigo | 2003-10-28 | 1 | -0/+5 |
| | | | | SF bug 793822 | ||||
* | SF bug #827902: ctime is not creation time | Raymond Hettinger | 2003-10-27 | 1 | -1/+2 |
| | | | | Document the correct definition of os.path.getctime() | ||||
* | Fix inaccuracy: all entities from XHTML 1.0 are supported (according to text ↵ | Andrew M. Kuchling | 2003-10-27 | 1 | -4/+4 |
| | | | | further down in this file) | ||||
* | Replace the window() example with pairwise() which demonstrates tee(). | Raymond Hettinger | 2003-10-26 | 1 | -10/+4 |
| | |||||
* | Added itertools.tee() | Raymond Hettinger | 2003-10-24 | 1 | -17/+39 |
| | | | | | | It works like the pure python verion except: * it stops storing data after of the iterators gets deallocated * the data queue is implemented with two stacks instead of one dictionary. | ||||
* | [Bug #809174] loads() and dumps() not documented | Andrew M. Kuchling | 2003-10-22 | 1 | -0/+24 |
| | |||||
* | Avoid confusing name for the 3rd argument to str.replace(). | Fred Drake | 2003-10-22 | 1 | -3/+3 |
| | | | | This closes SF bug #827260. | ||||
* | - make this section format | Fred Drake | 2003-10-21 | 1 | -100/+98 |
| | | | | | | | - start cleaning up the markup for consistency - comment out the reference to a MS KnowledgeBase article that doesn't seem to be present at msdn.microsoft.com; hopefully someone can point out an alternate source for the relevant information | ||||
* | markup fixes; this would not format | Fred Drake | 2003-10-21 | 1 | -2/+2 |
| | |||||
* | ConfigParser.items() and SafeConfigParser.items() no longer return a | Fred Drake | 2003-10-21 | 1 | -3/+3 |
| | | | | generator. See SF bug #818861. | ||||
* | Use 'predicate = bool' as the default predicate for ifilter[false]. | Guido van Rossum | 2003-10-20 | 1 | -4/+2 |
| | |||||
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 2 | -2/+2 |
| | | | | (From SF patch #810751) | ||||
* | Fixed \versionadded for the (?(id/name)yes|no) expression support. | Gustavo Niemeyer | 2003-10-18 | 1 | -1/+1 |
| | |||||
* | Patch #825679: Clarify semantics of .isfoo on empty strings. | Martin v. Löwis | 2003-10-18 | 1 | -5/+7 |
| | | | | Backported to 2.3. | ||||
* | Patch #809535: Mention behaviour of seek on text files. Backported to 2.3. | Martin v. Löwis | 2003-10-18 | 1 | -1/+6 |
| | |||||
* | Implemented non-recursive SRE matching. | Gustavo Niemeyer | 2003-10-17 | 1 | -0/+9 |
| | |||||
* | * list.sort() now supports three keyword arguments: cmp, key, and reverse. | Raymond Hettinger | 2003-10-16 | 1 | -36/+28 |
| | | | | | | | key provides C support for the decorate-sort-undecorate pattern. reverse provide a stable sort of the list with the comparisions reversed. * Amended the docs to guarantee sort stability. | ||||
* | Initial checkin of docs for Lib/platform.py . | Brett Cannon | 2003-10-14 | 2 | -0/+224 |
| | | | | | | Closes patch #785752 and bug #726911. Should be backported after correctness and such has been verified by Fred. | ||||
* | 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 patch #819955: Erroneous \seemodule in tarfile docs | Raymond Hettinger | 2003-10-12 | 1 | -1/+1 |
| | | | | (Contributed by Johannes Gijsbers.) | ||||
* | Adopt Christian Stork's suggested argument order for the logic quantifiers. | Raymond Hettinger | 2003-10-05 | 1 | -4/+4 |
| | | | | Adopt Jeremy Fincher's suggested function name, "any", instead of "some". | ||||
* | SF bug #812202: randint is always even | Raymond Hettinger | 2003-10-05 | 1 | -0/+12 |
| | | | | | | | * Added C coded getrandbits(k) method that runs in linear time. * Call the new method from randrange() for ranges >= 2**53. * Adds a warning for generators not defining getrandbits() whenever they have a call to randrange() with too large of a population. | ||||
* | Make the fieldnames argument optional in the DictReader. If self.fieldnames | Skip Montanaro | 2003-10-03 | 1 | -4/+15 |
| | | | | | | | | | is None, the next row read is used as the fieldnames. In the common case, this means the programmer doesn't need to know the fieldnames ahead of time. The first row of the file will be used. In the uncommon case, this means the programmer can set the reader's fieldnames attribute to None at any time and have the next row read as the next set of fieldnames, so a csv file can contain several "sections", each with different fieldnames. | ||||
* | Work around minor markup issue: we don't want markup to escape into | Fred Drake | 2003-09-30 | 1 | -1/+1 |
| | | | | the module index. | ||||
* | [Bug #812936] Correct the documentation for RotatingFileHandler. | Andrew M. Kuchling | 2003-09-26 | 1 | -11/+15 |
| | | | | [2.3 bugfix candidate] | ||||
* | Added codec for bz2 compression. | Raymond Hettinger | 2003-09-23 | 1 | -0/+5 |
| | |||||
* | SF 810242. Fix doubled word errors. | Raymond Hettinger | 2003-09-22 | 7 | -7/+7 |
| | |||||
* | Clean-up example code: remove string module and backticks. | Raymond Hettinger | 2003-09-22 | 1 | -3/+2 |
| | |||||
* | Patch #800697: Add readline.clear_history. | Martin v. Löwis | 2003-09-20 | 1 | -0/+6 |
| | |||||
* | Patch #808362: Fix typos. | Martin v. Löwis | 2003-09-20 | 2 | -2/+2 |
| | |||||
* | * Minor wording change | Raymond Hettinger | 2003-09-16 | 1 | -2/+8 |
| | | | | * Reference the doctest.DocTestSuite() conversion tool. | ||||
* | Minor fixups | Raymond Hettinger | 2003-09-16 | 2 | -2/+3 |
| | |||||
* | SF bug #804113: Crypto terminology for crypto hash function | Raymond Hettinger | 2003-09-15 | 1 | -3/+4 |
| | | | | | Noted that the SHA algorithm is really SHA-1. (Contributed by Ronald Rivest.) | ||||
* | SF #662923 | Raymond Hettinger | 2003-09-12 | 2 | -9/+24 |
| | | | | | | Add support for the iterator and mapping protocols. For Py2.3, this was done for shelve, dumbdbm and other mapping objects, but not for bsddb and dbhash which were inadvertently missed. | ||||
* | SF bug #804280: fromkeys is not listed in index | Raymond Hettinger | 2003-09-12 | 1 | -4/+5 |
| | |||||
* | fix markup buglets | Fred Drake | 2003-09-11 | 1 | -22/+13 |
| | |||||
* | - add version annotation for HIGHEST_PROTOCOL | Fred Drake | 2003-09-10 | 1 | -5/+5 |
| | | | | - cleaned up some markup | ||||
* | select.select() now accepts a sequence (as defined by PySequence_Fast()) for | Brett Cannon | 2003-09-10 | 1 | -5/+5 |
| | | | | | | its first three arguments. Closes RFE #798046 . | ||||
* | mention new module doc display feature of pydoc in libref and NEWS | Skip Montanaro | 2003-09-10 | 1 | -0/+5 |
| | |||||
* | SF bug #803679: Missing section number in csv module documentation | Raymond Hettinger | 2003-09-10 | 1 | -2/+2 |
| | |||||
* | SF bug #803842: Wrong description of regexp concatenation | Raymond Hettinger | 2003-09-10 | 1 | -4/+5 |
| |