| Commit message (Expand) | Author | Age | Files | Lines |
* | Implement itertools.groupby() | Raymond Hettinger | 2003-12-06 | 1 | -0/+60 |
|
|
* | SF bug #844123: "up" instead of "down" in turtle module documentation | Raymond Hettinger | 2003-12-06 | 1 | -1/+1 |
|
|
* | - fix markup in the bool() description | Fred Drake | 2003-12-05 | 1 | -10/+9 |
|
|
* | Add parameters indent, width and depth to pprint.pprint() and pprint.pformat() | Walter Dörwald | 2003-12-03 | 1 | -6/+14 |
|
|
* | As discussed on python-dev, added two extractor functions to the | Raymond Hettinger | 2003-12-01 | 1 | -0/+33 |
|
|
* | Patch #849350: Update to document bool return values. Backported to 2.3. | Martin v. Löwis | 2003-11-27 | 4 | -4/+4 |
|
|
* | Patch #849595: Add socket.shutdown() constants. | Martin v. Löwis | 2003-11-27 | 1 | -2/+2 |
|
|
* | Nits from a review of the documentation update. | Raymond Hettinger | 2003-11-26 | 2 | -6/+3 |
|
|
* | Add version changed doc for addition of fillchar to ljust/rjust/center | Neal Norwitz | 2003-11-26 | 1 | -0/+3 |
|
|
* | Add optional fillchar argument to ljust(), rjust(), and center() string methods. | Raymond Hettinger | 2003-11-26 | 1 | -6/+8 |
|
|
* | As discussed on python-dev, banish apply(), buffer(), coerce(), and | Raymond Hettinger | 2003-11-25 | 1 | -51/+68 |
|
|
* | * Checkin remaining documentation | Raymond Hettinger | 2003-11-24 | 1 | -0/+120 |
|
|
* | More words: gave more motivation, and added cautions about the special | Tim Peters | 2003-11-21 | 1 | -10/+51 |
|
|
* | Add a missing import. Closes SF # 816344. | Barry Warsaw | 2003-11-21 | 1 | -0/+1 |
|
|
* | Patch #831747: Add skip_accept_encoding parameter to putrequest. | Martin v. Löwis | 2003-11-19 | 1 | -2/+7 |
|
|
* | Generator's constructor: The documentation was incorrect regarding how | Barry Warsaw | 2003-11-19 | 1 | -3/+2 |
|
|
* | Patch #843088: Fix typos. Backported to 2.3. | Martin v. Löwis | 2003-11-18 | 2 | -3/+3 |
|
|
* | * Migrate set() and frozenset() from the sandbox. | Raymond Hettinger | 2003-11-16 | 1 | -0/+19 |
|
|
* | Fix typo | Raymond Hettinger | 2003-11-16 | 1 | -1/+1 |
|
|
* | remove "support" for BerkeleyDB 3.1, it hasn't worked for a long time | Gregory P. Smith | 2003-11-13 | 1 | -2/+2 |
|
|
* | Improve the implementation of itertools.tee(). | Raymond Hettinger | 2003-11-12 | 1 | -4/+12 |
|
|
* | fix typo in markup | Fred Drake | 2003-11-10 | 1 | -1/+1 |
|
|
* | add missing "if" | Fred Drake | 2003-11-10 | 1 | -1/+1 |
|
|
* | Mention that getsid is new in 2.4. | Martin v. Löwis | 2003-11-10 | 1 | -1/+1 |
|
|
* | Patch #798297: Add IMAP THREAD command. | Martin v. Löwis | 2003-11-10 | 1 | -0/+22 |
|
|
* | Patch #839038: Add getsid(2). | Martin v. Löwis | 2003-11-10 | 1 | -0/+6 |
|
|
* | Add docs for readmodule_ex and its function-descriptors, fixing | Alex Martelli | 2003-11-09 | 1 | -5/+42 |
|
|
* | Avoid giving advice that's bad for security, as per SF bug #823515 | Alex Martelli | 2003-11-09 | 1 | -1/+3 |
|
|
* | Implement and apply PEP 322, reverse iteration | Raymond Hettinger | 2003-11-06 | 1 | -0/+8 |
|
|
* | Add traceback.format_exc(). | Neil Schemenauer | 2003-11-05 | 1 | -0/+5 |
|
|
* | SF patch #834444: add versionadd to new functions | Raymond Hettinger | 2003-11-02 | 1 | -0/+2 |
|
|
* | [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 |
|
|
* | Documented gc.get_referrers() as dangerous. | Armin Rigo | 2003-10-28 | 1 | -0/+5 |
|
|
* | SF bug #827902: ctime is not creation time | Raymond Hettinger | 2003-10-27 | 1 | -1/+2 |
|
|
* | Fix inaccuracy: all entities from XHTML 1.0 are supported (according to text ... | Andrew M. Kuchling | 2003-10-27 | 1 | -4/+4 |
|
|
* | 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 |
|
|
* | [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 |
|
|
* | - make this section format | Fred Drake | 2003-10-21 | 1 | -100/+98 |
|
|
* | 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 |
|
|
* | Use 'predicate = bool' as the default predicate for ifilter[false]. | Guido van Rossum | 2003-10-20 | 1 | -4/+2 |
|
|