| Commit message (Expand) | Author | Age | Files | Lines |
* | A new attempt at rationalizing the "history of the software" section, | Guido van Rossum | 2001-07-17 | 1 | -45/+60 |
|
|
* | Adding what's done of the documentation for the new profiling & | Fred Drake | 2001-07-17 | 1 | -0/+53 |
|
|
* | Use the "st" versions of the "ast" calls in the parser module -- there is | Fred Drake | 2001-07-17 | 1 | -2/+2 |
|
|
* | The syntax trees handled by this module are not "abstract," so take the | Fred Drake | 2001-07-17 | 1 | -132/+136 |
|
|
* | Typo repair. | Tim Peters | 2001-07-17 | 1 | -1/+1 |
|
|
* | Remove code to initialize globals that are never used. | Fred Drake | 2001-07-17 | 1 | -22/+11 |
|
|
* | Delete sentence fragment (noted by Fred Bremmer) | Andrew M. Kuchling | 2001-07-17 | 1 | -5/+5 |
|
|
* | - Add news about generators. | Guido van Rossum | 2001-07-17 | 1 | -1/+15 |
|
|
* | Bump the release number. | Fred Drake | 2001-07-17 | 1 | -65/+62 |
|
|
* | Add a really stupid warning about 'yield' used as an identifier. | Guido van Rossum | 2001-07-17 | 1 | -0/+12 |
|
|
* | Make the syntax for compound command lines more portable (nmake, CygWin). | Fred Drake | 2001-07-17 | 1 | -8/+8 |
|
|
* | Script to re-write @FOO@-style marks with values, initializing the | Fred Drake | 2001-07-17 | 1 | -0/+55 |
|
|
* | Update the release information. | Fred Drake | 2001-07-17 | 1 | -1/+1 |
|
|
* | Deleting zombies | Guido van Rossum | 2001-07-17 | 22 | -2716/+0 |
|
|
* | Now we're picking nits: get my name right! ;-) | Fred Drake | 2001-07-17 | 1 | -1/+1 |
|
|
* | Add FLD to credit list | Andrew M. Kuchling | 2001-07-17 | 1 | -2/+3 |
|
|
* | Job.__init__(): Only create the builddir directory if it will be used (by | Fred Drake | 2001-07-17 | 1 | -6/+7 |
|
|
* | Deleting merge zombie. | Guido van Rossum | 2001-07-17 | 1 | -480/+0 |
|
|
* | Cleaned up a number of minor nits, use markup a little more consistently. | Fred Drake | 2001-07-17 | 1 | -16/+25 |
|
|
* | Minor rewrites to iterator and generator sections | Andrew M. Kuchling | 2001-07-17 | 1 | -63/+75 |
|
|
* | Fix a couple of minor markup nits. | Fred Drake | 2001-07-17 | 1 | -5/+5 |
|
|
* | INSTALLATION: Remove the coexist.patch instructions | Kurt B. Kaiser | 2001-07-17 | 2 | -21/+10 |
|
|
* | Put this in the attic, at least for now... | Kurt B. Kaiser | 2001-07-17 | 1 | -186/+0 |
|
|
* | Implement idle command interface as suggested by GvR [idle-dev] 16 July | Kurt B. Kaiser | 2001-07-17 | 3 | -38/+26 |
|
|
* | Prepare Windows installer for 2.2a1. | Tim Peters | 2001-07-17 | 3 | -4/+7 |
|
|
* | Added tests for the new yield support in the parser module. | Fred Drake | 2001-07-17 | 1 | -1/+132 |
|
|
* | Add support for yield statements. | Fred Drake | 2001-07-17 | 1 | -1/+17 |
|
|
* | Typo in the classic mlte build line. | Jack Jansen | 2001-07-16 | 1 | -1/+1 |
|
|
* | The TNXDraw gworld argument is optional. | Jack Jansen | 2001-07-16 | 3 | -2/+35 |
|
|
* | It now works under Carbon. Under Classic the scrollbars don't show | Jack Jansen | 2001-07-16 | 1 | -104/+15 |
|
|
* | This has never worked on Windows. Now it does. If it breaks on Unix now, | Tim Peters | 2001-07-16 | 1 | -1/+7 |
|
|
* | Updated the documentation in several respects: | Barry Warsaw | 2001-07-16 | 1 | -14/+46 |
|
|
* | test_basic(): Add a test for "person@dom.ain (User J. Person)" which | Barry Warsaw | 2001-07-16 | 1 | -0/+12 |
|
|
* | Stoopid change, just to mention that the last checkin resolves SF bug | Barry Warsaw | 2001-07-16 | 1 | -1/+1 |
|
|
* | Fix address parsing to be RFC 2822 conformant. Specifically, dots are | Barry Warsaw | 2001-07-16 | 1 | -105/+123 |
|
|
* | File handlers don't work on the mac, so don't pretend they do. I guess this i... | Jack Jansen | 2001-07-16 | 1 | -1/+2 |
|
|
* | Add a unit test for sgmllib (needs work, but has already caught problems). | Fred Drake | 2001-07-16 | 1 | -0/+243 |
|
|
* | Give more useful information about a failing PyUnit-style test. | Fred Drake | 2001-07-16 | 1 | -2/+11 |
|
|
* | Remove a duplicate test. | Fred Drake | 2001-07-16 | 1 | -1/+0 |
|
|
* | Document doctest's generator-future hack. | Tim Peters | 2001-07-16 | 1 | -0/+7 |
|
|
* | In CDATA mode, make sure entity-reference syntax is not interpreted; | Fred Drake | 2001-07-16 | 1 | -8/+26 |
|
|
* | jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base' | Guido van Rossum | 2001-07-16 | 1 | -0/+1 |
|
|
* | PyRun_StringFlags(): forgot to pass the flags on to | Guido van Rossum | 2001-07-16 | 1 | -1/+4 |
|
|
* | Fix SF #441664: Python crash on del of a slice of a mmap | Thomas Wouters | 2001-07-16 | 1 | -0/+10 |
|
|
* | Revise the description of time.clock() so that it correctly describes the | Fred Drake | 2001-07-16 | 1 | -5/+11 |
|
|
* | Fix a mismatched parenthesis in the last patch. | Guido van Rossum | 2001-07-16 | 1 | -1/+1 |
|
|
* | Use \longprogramopt, as suggested by FLD | Andrew M. Kuchling | 2001-07-16 | 1 | -2/+2 |
|
|
* | [Bug #441527] Fixes for preprocessor support, contributed by Tarn | Andrew M. Kuchling | 2001-07-16 | 1 | -4/+5 |
|
|
* | Use \verb for configure switches, because inside \code multiple dashes | Andrew M. Kuchling | 2001-07-16 | 1 | -3/+2 |
|
|
* | Write some entries in the "Other changes" section | Andrew M. Kuchling | 2001-07-16 | 1 | -53/+88 |
|
|