| Commit message (Expand) | Author | Age | Files | Lines |
* | SF bug 124051: ndiff "?" lines can be confusing. Well, they still can, but | Tim Peters | 2000-12-09 | 1 | -28/+19 |
|
|
* | a few small optimizations that seem to give a 5-10% speedup; the | Jeremy Hylton | 2000-11-06 | 1 | -76/+80 |
|
|
* | move pruneNext method to correct object (doh!) | Jeremy Hylton | 2000-11-06 | 1 | -24/+24 |
|
|
* | Change the graph structure to contain the code generator object for | Jeremy Hylton | 2000-11-06 | 3 | -21/+133 |
|
|
* | If a function contains a doc string, remove the doc string node from | Jeremy Hylton | 2000-11-06 | 1 | -1/+5 |
|
|
* | Application of [ Patch #102226 ] freeze/modulefinder.py should use _winreg, n... | Mark Hammond | 2000-11-06 | 1 | -15/+6 |
|
|
* | Added 38,642 missing characters to the Unicode database (first-last | Fredrik Lundh | 2000-11-03 | 1 | -11/+39 |
|
|
* | Hack ndiff to display lines w/ leading tabs more intuitively. This synchs | Tim Peters | 2000-11-01 | 1 | -9/+24 |
|
|
* | Added the -D/--docstrings option for extraction of unmarked module, | Barry Warsaw | 2000-10-27 | 1 | -40/+82 |
|
|
* | Remove bogus stdout redirection and use of sys.__stdout__; use | Fred Drake | 2000-10-26 | 1 | -46/+42 |
|
|
* | Remove bogus stdout redirection and use of sys.__stdout__; use | Fred Drake | 2000-10-26 | 1 | -32/+28 |
|
|
* | Add IDLE wish: access items of arrays | Guido van Rossum | 2000-10-25 | 1 | -0/+1 |
|
|
* | Many changes. | Jeremy Hylton | 2000-10-25 | 1 | -220/+145 |
|
|
* | Generated from rev 1.1 of ast.txt | Jeremy Hylton | 2000-10-25 | 1 | -677/+606 |
|
|
* | Small optimizations in dispatch method: 1) lookup node's __class__ once | Jeremy Hylton | 2000-10-25 | 1 | -12/+14 |
|
|
* | Support for generation of ast.py from simple description of node | Jeremy Hylton | 2000-10-25 | 4 | -0/+518 |
|
|
* | run the std regression test suite using bytecode produced by the compiler | Jeremy Hylton | 2000-10-13 | 1 | -0/+55 |
|
|
* | add -d option that dumps entire AST before compiling | Jeremy Hylton | 2000-10-13 | 1 | -2/+5 |
|
|
* | Now supports entire Python 2.0 language and still supports Python | Jeremy Hylton | 2000-10-13 | 4 | -93/+463 |
|
|
* | Fix SF bug #116263: support for from .. import * | Jeremy Hylton | 2000-10-12 | 3 | -4/+13 |
|
|
* | read in a .pyc file and disassemble the code objects | Jeremy Hylton | 2000-10-09 | 1 | -0/+39 |
|
|
* | Fix for next iteration of SF bug 115690 (Unicode headaches in IDLE). The | Tim Peters | 2000-10-06 | 1 | -0/+13 |
|
|
* | I'm moving redemo.py here from Demo/tkinter/guido, since it is | Guido van Rossum | 2000-10-06 | 1 | -0/+171 |
|
|
* | New tool for normalizing indentation of .py files. | Tim Peters | 2000-10-05 | 1 | -0/+258 |
|
|
* | - don't set the titlecase flag for uppercase letters (sorry, tim) | Fredrik Lundh | 2000-09-25 | 1 | -2/+2 |
|
|
* | unicode database compression, step 3: | Fredrik Lundh | 2000-09-25 | 1 | -4/+19 |
|
|
* | unicode database compression, step 3: | Fredrik Lundh | 2000-09-25 | 2 | -9/+100 |
|
|
* | unicode database compression, step 2: | Fredrik Lundh | 2000-09-25 | 1 | -15/+47 |
|
|
* | Fiddled w/ /F's cool new splitbins function: documented it, generalized it | Tim Peters | 2000-09-25 | 1 | -26/+54 |
|
|
* | unicode database compression, step 1: | Fredrik Lundh | 2000-09-24 | 1 | -0/+202 |
|
|
* | Implemented new os.startfile function, unique to Windows, exposing a | Tim Peters | 2000-09-22 | 1 | -2/+3 |
|
|
* | change 2-space indent to 4-space indent | Jeremy Hylton | 2000-09-20 | 1 | -1081/+1079 |
|
|
* | distutils setup script | Jeremy Hylton | 2000-09-20 | 1 | -0/+9 |
|
|
* | Fix typo (newtabwith). | Guido van Rossum | 2000-09-20 | 1 | -1/+1 |
|
|
* | Temporary fix for Bug #114821. | Guido van Rossum | 2000-09-19 | 1 | -2/+18 |
|
|
* | satisfy the tabnanny | Jeremy Hylton | 2000-09-18 | 3 | -358/+358 |
|
|
* | Allow this script to act like a module by only calling main() if | Barry Warsaw | 2000-09-16 | 1 | -1/+3 |
|
|
* | Fix for bug #113693: with the changes to the IMPORT_FROM opcodes, this | Guido van Rossum | 2000-09-15 | 1 | -0/+7 |
|
|
* | Include the filename in the errror message for F5 without saving. | Guido van Rossum | 2000-09-15 | 1 | -1/+5 |
|
|
* | main(): Move hackery of sys.argv until after the Tk instance has been | Fred Drake | 2000-09-15 | 1 | -7/+7 |
|
|
* | Don't emit 8 lines of (c) information at startup -- use the same text | Guido van Rossum | 2000-09-05 | 1 | -1/+4 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 2 | -28/+4 |
|
|
* | patch by Neil Schemenauer to improve (fix?) line number generation | Jeremy Hylton | 2000-09-01 | 2 | -17/+32 |
|
|
* | Update magic number. | Jeremy Hylton | 2000-09-01 | 2 | -15/+47 |
|
|
* | Rob Hooft, Moshe Zadka: converted to 4 space indents and re instead of regex. | Guido van Rossum | 2000-09-01 | 2 | -72/+78 |
|
|
* | Tool to generate binary GNU .mo file from .po template files. Written | Barry Warsaw | 2000-09-01 | 1 | -0/+194 |
|
|
* | Bring Tools/compiler almost up to date. Specifically: | Thomas Wouters | 2000-08-12 | 3 | -348/+349 |
|
|
* | add note about compiler directory | Jeremy Hylton | 2000-08-04 | 1 | -0/+4 |
|
|
* | replace most calls to emit 'SET_LINENO' will call to method set_lineno | Jeremy Hylton | 2000-08-04 | 1 | -31/+42 |
|
|
* | update my email address | Jeremy Hylton | 2000-08-04 | 1 | -1/+4 |
|
|