summaryrefslogtreecommitdiffstats
path: root/Tools
Commit message (Expand)AuthorAgeFilesLines
* This is a trivial command line utility to print MD5 checksums.Guido van Rossum2001-06-221-0/+32
* write(): Karl Eichwalder points out that the #, flag comments shouldBarry Warsaw2001-06-201-1/+4
* write(): It's been generally agreed on the i18n-sig that the docstringBarry Warsaw2001-06-191-1/+1
* Taught IDLE's autoident parser that "yield" is a keyword that begins aTim Peters2001-06-191-0/+1
* Make copy, cut and paste events case insensitive. Reported by PatrickGuido van Rossum2001-06-121-3/+3
* SF bug 430991: wrong co_lnotabTim Peters2001-06-091-17/+14
* Patch #430754: Makes ftpmirror.py .netrc awareMartin v. Löwis2001-06-071-3/+10
* Quick update to the extension mechanism (extend.py is gone, long liveGuido van Rossum2001-06-041-6/+20
* Separate CFLAGS and CPPFLAGS. CFLAGS should not contain preprocessorNeil Schemenauer2001-06-022-2/+4
* write(): Aggressively sort all catalog entries, and fix the bug whereBarry Warsaw2001-05-241-35/+37
* write(): Do two levels of sorting: first sort the individual locationBarry Warsaw2001-05-231-0/+10
* main(): default-domain argument to getopt.getopt() was missing a = toBarry Warsaw2001-05-211-1/+1
* __addentry(): add optional keyword arg `isdocstring' which is a flagBarry Warsaw2001-05-211-4/+10
* write(): A patch inspired by Tokio Kikuchi that sorts location entriesBarry Warsaw2001-05-211-7/+12
* Generate prototype-style function headers in stead of K&R style. Makes life e...Jack Jansen2001-05-193-33/+12
* Moved the encoding map building logic from the individual mappingMarc-André Lemburg2001-05-161-3/+1
* Refactored, with some future plans in mind.Guido van Rossum2001-05-121-11/+23
* Move the action of loading the configuration to the IdleConf moduleGuido van Rossum2001-05-122-8/+1
* Delete goodname() method, which is unused.Guido van Rossum2001-05-121-11/+7
* Only catch NameError and TypeError when attempting to subclass anFred Drake2001-05-111-1/+1
* Fix several bugs and add two features.Jeremy Hylton2001-05-081-34/+88
* Remove BrowserControl module; this had been left in for Python 1.5.2Fred Drake2001-04-181-157/+0
* Remove legacy support for the BrowserControl module; the webbrowserFred Drake2001-04-181-7/+3
* update_yourself(): Removed unused local variable reported byBarry Warsaw2001-04-181-1/+0
* __init__(): Removed unused local variable reported by PyChecker.Barry Warsaw2001-04-181-1/+0
* StripWidget.__init__(), update_yourself(): Removed some unused localBarry Warsaw2001-04-181-21/+20
* Helpwin.__init__(): Removed an unused local variable (via import)Barry Warsaw2001-04-181-1/+1
* Bump the version to 1.1Barry Warsaw2001-04-181-1/+1
* There have been a few new Python releases <wink> in the 2 years sinceBarry Warsaw2001-04-181-10/+7
* Pop loop off the loop stack before handling the loop's else clause.Jeremy Hylton2001-04-121-4/+4
* Use new _implicitNameOp() to generate name op code for list comprehensions.Jeremy Hylton2001-04-121-4/+17
* Add support for visitAssAttr to findOp().Jeremy Hylton2001-04-121-1/+1
* pyassem.py:Jeremy Hylton2001-04-122-14/+111
* Revise handling of tuple arguments so that the variables names matchJeremy Hylton2001-04-122-8/+8
* Only treat an AugAssign as def if its the target is a Name.Jeremy Hylton2001-04-121-2/+4
* Fix unpackSequence() to use _nameOp() rather than LOAD_FASTJeremy Hylton2001-04-121-1/+2
* Inside a class scope always use LOAD_NAME, STORE_NAME, DEL_NAMEJeremy Hylton2001-04-121-0/+3
* Preliminary support for nested scopesJeremy Hylton2001-04-123-89/+396
* Define constants for types of scopesJeremy Hylton2001-04-121-0/+5
* typoJeremy Hylton2001-04-111-4/+8
* [finishing fix from earlier checkins]Jeremy Hylton2001-04-111-0/+1
* Add support for extra (*) arguments to preorder.Jeremy Hylton2001-04-111-3/+3
* Generate docstrings.Jeremy Hylton2001-04-111-3/+26
* Add lineno attributes to Discard nodesJeremy Hylton2001-04-111-1/+3
* Make sure the docstring is always entered as the first element in theJeremy Hylton2001-04-111-11/+1
* Append the revision number for each file to the output.Guido van Rossum2001-04-101-1/+1
* Add globals to list of names returned by get_names().Jeremy Hylton2001-04-091-7/+13
* Add two arguments to Scope constructor, module scope and class nameJeremy Hylton2001-04-091-24/+92
* Add preliminary module symbol table constructorJeremy Hylton2001-04-091-0/+193
* Add support for future statementsJeremy Hylton2001-04-092-6/+98