Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use string.ascii_letters instead of string.letters (SF bug #226706). | Fred Drake | 2001-07-20 | 1 | -1/+1 |
| | |||||
* | Remove all remaining uses of the FCNTL module from the standard library. | Fred Drake | 2001-05-10 | 1 | -5/+5 |
| | |||||
* | Fixed syntax error. | Sjoerd Mullender | 2001-02-09 | 1 | -1/+1 |
| | |||||
* | splitfields -> split | Eric S. Raymond | 2001-02-09 | 1 | -1/+1 |
| | |||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 5 | -20/+16 |
| | |||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 9 | -49/+50 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 2 | -2/+2 |
| | | | | | | | | | | comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;) | ||||
* | Deleted the stdwin-based test() function. | Guido van Rossum | 2000-05-08 | 1 | -66/+0 |
| | |||||
* | Fixed a multi-arg append() call, discovered by Mark Favas. | Guido van Rossum | 2000-02-27 | 1 | -4/+4 |
| | | | | Also removed some unnecessary backslases (inside parens). | ||||
* | no real change -- testing syncmail | Jeremy Hylton | 2000-02-15 | 1 | -1/+1 |
| | |||||
* | These modules are now declared obsolete. | Fred Drake | 2000-02-03 | 3 | -0/+328 |
| | |||||
* | Dang. Even though this is obsolete code, somebody found a bug, and I | Guido van Rossum | 1999-02-22 | 1 | -1/+1 |
| | | | | fix it. Oh well. | ||||
* | Declaring zmod and poly obsolete. They have problems. | Guido van Rossum | 1998-11-02 | 2 | -0/+146 |
| | |||||
* | Untabified -- to satisfy the tab nanny. | Guido van Rossum | 1998-06-09 | 1 | -186/+186 |
| | |||||
* | Put quotes around the filename, so spaces in filenames work. | Guido van Rossum | 1998-04-28 | 1 | -1/+1 |
| | | | | (Jack) | ||||
* | Restore ni as an obsolete module. | Fred Drake | 1998-04-09 | 1 | -0/+434 |
| | |||||
* | Convert all remaining *simple* cases of regex usage to re usage. | Guido van Rossum | 1997-10-22 | 1 | -4/+5 |
| | |||||
* | Added pgrep() function, which is like grep/egrep/emgrep but uses Perl | Guido van Rossum | 1997-10-22 | 1 | -0/+18 |
| | | | | syntax, by virtue of the new re module. | ||||
* | Turns out whatsound.py and sndhdr.py were identical modules. | Guido van Rossum | 1997-10-04 | 1 | -270/+1 |
| | | | | | | Since there's also an imghdr.py file, I propose to make sndhdr.py the official one. For compatibility, whatsound.py imports * from sndhdr.py. | ||||
* | Use sys.exc_info() where needed. | Guido van Rossum | 1997-09-29 | 1 | -5/+6 |
| | |||||
* | This module is now completely obsolete. | Guido van Rossum | 1997-07-18 | 1 | -0/+14 |
| | | | | | Noted this in the XXX comments. Also, changed all three functions to use the attributes if they exist. | ||||
* | Changes to always call list.append with a single argument. | Guido van Rossum | 1996-10-08 | 1 | -3/+3 |
| | |||||
* | Change to always call list.append with a single argument. | Guido van Rossum | 1996-10-08 | 1 | -1/+1 |
| | |||||
* | noted obsolescence; exec() -> exec | Guido van Rossum | 1995-08-10 | 1 | -1/+2 |
| | |||||
* | added note about obsolescence | Guido van Rossum | 1995-08-10 | 2 | -0/+2 |
| | |||||
* | added html parser and supporting cast | Guido van Rossum | 1995-02-27 | 2 | -0/+1029 |
| | |||||
* | handle class exceptions | Guido van Rossum | 1995-02-27 | 1 | -1/+4 |
| | |||||
* | changes for the Mac | Guido van Rossum | 1995-01-27 | 1 | -0/+26 |
| | |||||
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 | 3 | -5/+31 |
| | |||||
* | Module to lock open files using fcntl() | Guido van Rossum | 1994-05-03 | 1 | -0/+15 |
| | |||||
* | urlopen: add basejoin() function. | Guido van Rossum | 1994-03-07 | 1 | -0/+67 |
| | | | | addpack: new module to add packages to sys.path. | ||||
* | * calendar.py: all libC functionality now moved to built-in time module | Guido van Rossum | 1993-06-23 | 1 | -0/+1 |
| | | | | | | | * imghdr.py: added jpeg recognition * torgb.py: added jpeg conversion * tzparse.py: use functions from time instead of calendar * whatsound.py: add /ufs/guido/biin/sgi to $PATH when calling 'whatsound' | ||||
* | * toaiff.py: import whatsound instead of sndhdr | Guido van Rossum | 1993-06-01 | 1 | -0/+269 |
| | | | | | | * sndhdr.py: renamed to whatsound.py; use new aifc module for AIFF/AIFC * ftplib.py: added close() (closes without sending QUIT command) * aifc.py: documented close() | ||||
* | Added help() fn; use os.sep | Guido van Rossum | 1992-04-06 | 1 | -2/+17 |
| | |||||
* | Use *args syntax instead of +args | Guido van Rossum | 1992-04-06 | 1 | -3/+3 |
| | |||||
* | getattr() is now built-in; no longer need a class to simulate varargs. | Guido van Rossum | 1992-04-02 | 1 | -19/+15 |
| | |||||
* | mac -> os | Guido van Rossum | 1992-03-31 | 1 | -11/+10 |
| | |||||
* | Add a function to return just the line number of a code object. | Guido van Rossum | 1992-03-27 | 1 | -0/+9 |
| | |||||
* | Initial revision | Guido van Rossum | 1992-01-22 | 1 | -0/+54 |
| | |||||
* | Now uses varargs syntax to grep more than one file. | Guido van Rossum | 1992-01-12 | 1 | -30/+48 |
| | |||||
* | Use module os. | Guido van Rossum | 1992-01-12 | 1 | -51/+4 |
| | | | | Split off file cache to module 'linecache'. | ||||
* | New == syntax | Guido van Rossum | 1992-01-01 | 4 | -24/+24 |
| | |||||
* | Adapted to new "regex" module. | Guido van Rossum | 1991-12-31 | 1 | -10/+22 |
| | | | | | | Introduced egrep() and emgrep() variants. Use '==' for equality test. ., | ||||
* | Use ImportError | Guido van Rossum | 1991-12-26 | 1 | -1/+1 |
| | |||||
* | Use AttributeError | Guido van Rossum | 1991-12-26 | 1 | -6/+6 |
| | |||||
* | Initial revision | Guido van Rossum | 1991-11-12 | 1 | -0/+79 |
| | |||||
* | Added warning comment | Guido van Rossum | 1991-08-16 | 1 | -0/+1 |
| | |||||
* | macpath.cat --> join | Guido van Rossum | 1991-08-16 | 1 | -4/+4 |
| | |||||
* | save match function instead of regexp object | Guido van Rossum | 1991-08-16 | 1 | -2/+2 |
| | |||||
* | Clarify comment. | Guido van Rossum | 1991-04-21 | 1 | -1/+1 |
| |