| Commit message (Expand) | Author | Age | Files | Lines |
* | Added a Parser_OSX class that can parse new-style (C-only) headers, | Jack Jansen | 2001-06-26 | 1 | -4/+19 |
|
|
* | This is a trivial command line utility to print MD5 checksums. | Guido van Rossum | 2001-06-22 | 1 | -0/+32 |
|
|
* | write(): Karl Eichwalder points out that the #, flag comments should | Barry Warsaw | 2001-06-20 | 1 | -1/+4 |
|
|
* | write(): It's been generally agreed on the i18n-sig that the docstring | Barry Warsaw | 2001-06-19 | 1 | -1/+1 |
|
|
* | Taught IDLE's autoident parser that "yield" is a keyword that begins a | Tim Peters | 2001-06-19 | 1 | -0/+1 |
|
|
* | Make copy, cut and paste events case insensitive. Reported by Patrick | Guido van Rossum | 2001-06-12 | 1 | -3/+3 |
|
|
* | SF bug 430991: wrong co_lnotab | Tim Peters | 2001-06-09 | 1 | -17/+14 |
|
|
* | Patch #430754: Makes ftpmirror.py .netrc aware | Martin v. Löwis | 2001-06-07 | 1 | -3/+10 |
|
|
* | Quick update to the extension mechanism (extend.py is gone, long live | Guido van Rossum | 2001-06-04 | 1 | -6/+20 |
|
|
* | Separate CFLAGS and CPPFLAGS. CFLAGS should not contain preprocessor | Neil Schemenauer | 2001-06-02 | 2 | -2/+4 |
|
|
* | write(): Aggressively sort all catalog entries, and fix the bug where | Barry Warsaw | 2001-05-24 | 1 | -35/+37 |
|
|
* | write(): Do two levels of sorting: first sort the individual location | Barry Warsaw | 2001-05-23 | 1 | -0/+10 |
|
|
* | main(): default-domain argument to getopt.getopt() was missing a = to | Barry Warsaw | 2001-05-21 | 1 | -1/+1 |
|
|
* | __addentry(): add optional keyword arg `isdocstring' which is a flag | Barry Warsaw | 2001-05-21 | 1 | -4/+10 |
|
|
* | write(): A patch inspired by Tokio Kikuchi that sorts location entries | Barry Warsaw | 2001-05-21 | 1 | -7/+12 |
|
|
* | Generate prototype-style function headers in stead of K&R style. Makes life e... | Jack Jansen | 2001-05-19 | 3 | -33/+12 |
|
|
* | Moved the encoding map building logic from the individual mapping | Marc-André Lemburg | 2001-05-16 | 1 | -3/+1 |
|
|
* | Refactored, with some future plans in mind. | Guido van Rossum | 2001-05-12 | 1 | -11/+23 |
|
|
* | Move the action of loading the configuration to the IdleConf module | Guido van Rossum | 2001-05-12 | 2 | -8/+1 |
|
|
* | Delete goodname() method, which is unused. | Guido van Rossum | 2001-05-12 | 1 | -11/+7 |
|
|
* | Only catch NameError and TypeError when attempting to subclass an | Fred Drake | 2001-05-11 | 1 | -1/+1 |
|
|
* | Fix several bugs and add two features. | Jeremy Hylton | 2001-05-08 | 1 | -34/+88 |
|
|
* | Remove BrowserControl module; this had been left in for Python 1.5.2 | Fred Drake | 2001-04-18 | 1 | -157/+0 |
|
|
* | Remove legacy support for the BrowserControl module; the webbrowser | Fred Drake | 2001-04-18 | 1 | -7/+3 |
|
|
* | update_yourself(): Removed unused local variable reported by | Barry Warsaw | 2001-04-18 | 1 | -1/+0 |
|
|
* | __init__(): Removed unused local variable reported by PyChecker. | Barry Warsaw | 2001-04-18 | 1 | -1/+0 |
|
|
* | StripWidget.__init__(), update_yourself(): Removed some unused local | Barry Warsaw | 2001-04-18 | 1 | -21/+20 |
|
|
* | Helpwin.__init__(): Removed an unused local variable (via import) | Barry Warsaw | 2001-04-18 | 1 | -1/+1 |
|
|
* | Bump the version to 1.1 | Barry Warsaw | 2001-04-18 | 1 | -1/+1 |
|
|
* | There have been a few new Python releases <wink> in the 2 years since | Barry Warsaw | 2001-04-18 | 1 | -10/+7 |
|
|
* | Pop loop off the loop stack before handling the loop's else clause. | Jeremy Hylton | 2001-04-12 | 1 | -4/+4 |
|
|
* | Use new _implicitNameOp() to generate name op code for list comprehensions. | Jeremy Hylton | 2001-04-12 | 1 | -4/+17 |
|
|
* | Add support for visitAssAttr to findOp(). | Jeremy Hylton | 2001-04-12 | 1 | -1/+1 |
|
|
* | pyassem.py: | Jeremy Hylton | 2001-04-12 | 2 | -14/+111 |
|
|
* | Revise handling of tuple arguments so that the variables names match | Jeremy Hylton | 2001-04-12 | 2 | -8/+8 |
|
|
* | Only treat an AugAssign as def if its the target is a Name. | Jeremy Hylton | 2001-04-12 | 1 | -2/+4 |
|
|
* | Fix unpackSequence() to use _nameOp() rather than LOAD_FAST | Jeremy Hylton | 2001-04-12 | 1 | -1/+2 |
|
|
* | Inside a class scope always use LOAD_NAME, STORE_NAME, DEL_NAME | Jeremy Hylton | 2001-04-12 | 1 | -0/+3 |
|
|
* | Preliminary support for nested scopes | Jeremy Hylton | 2001-04-12 | 3 | -89/+396 |
|
|
* | Define constants for types of scopes | Jeremy Hylton | 2001-04-12 | 1 | -0/+5 |
|
|
* | typo | Jeremy Hylton | 2001-04-11 | 1 | -4/+8 |
|
|
* | [finishing fix from earlier checkins] | Jeremy Hylton | 2001-04-11 | 1 | -0/+1 |
|
|
* | Add support for extra (*) arguments to preorder. | Jeremy Hylton | 2001-04-11 | 1 | -3/+3 |
|
|
* | Generate docstrings. | Jeremy Hylton | 2001-04-11 | 1 | -3/+26 |
|
|
* | Add lineno attributes to Discard nodes | Jeremy Hylton | 2001-04-11 | 1 | -1/+3 |
|
|
* | Make sure the docstring is always entered as the first element in the | Jeremy Hylton | 2001-04-11 | 1 | -11/+1 |
|
|
* | Append the revision number for each file to the output. | Guido van Rossum | 2001-04-10 | 1 | -1/+1 |
|
|
* | Add globals to list of names returned by get_names(). | Jeremy Hylton | 2001-04-09 | 1 | -7/+13 |
|
|
* | Add two arguments to Scope constructor, module scope and class name | Jeremy Hylton | 2001-04-09 | 1 | -24/+92 |
|
|
* | Add preliminary module symbol table constructor | Jeremy Hylton | 2001-04-09 | 1 | -0/+193 |
|
|