| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch #661719: Expose compilation errors as exceptions on request. | Martin v. Löwis | 2003-01-15 | 3 | -26/+82 |
|
|
* | Patch #473586: Implement CGIXMLRPCRequestHandler. | Martin v. Löwis | 2003-01-15 | 1 | -109/+371 |
|
|
* | Updated IDLE Help to reflect changes in Additional Help Source | Kurt B. Kaiser | 2003-01-14 | 1 | -8/+26 |
|
|
* | M Bindings.py | Kurt B. Kaiser | 2003-01-14 | 8 | -92/+164 |
|
|
* | Explicitly raise an exception in __cmp__ -- this clarifies that cmp() | Guido van Rossum | 2003-01-14 | 1 | -0/+5 |
|
|
* | SF bug #661184: inspect.getsource bug | Raymond Hettinger | 2003-01-14 | 1 | -1/+3 |
|
|
* | make sure Info.plist has a CFBundleIdentifier entry | Just van Rossum | 2003-01-13 | 1 | -0/+2 |
|
|
* | A new test here was failing on Windows, because the test before it never | Tim Peters | 2003-01-13 | 1 | -10/+5 |
|
|
* | Duh. cmdqueue should be an instance variable, not a class variable. | Guido van Rossum | 2003-01-13 | 1 | -1/+1 |
|
|
* | Duh. The do_EOF() implementation was bogus. Make it more like | Guido van Rossum | 2003-01-13 | 1 | -3/+5 |
|
|
* | Fix SF bug #667147, Segmentation fault printing str subclass | Neal Norwitz | 2003-01-13 | 1 | -1/+24 |
|
|
* | Fix NameError in getquotaroot(), sanctioned by Piers. | Guido van Rossum | 2003-01-13 | 1 | -1/+1 |
|
|
* | Got rid of the internal datetimetz type. | Tim Peters | 2003-01-11 | 1 | -1/+1 |
|
|
* | Fix SF bug # 602259, 3rd parameter for Tkinter.scan_dragto | Neal Norwitz | 2003-01-10 | 1 | -3/+3 |
|
|
* | Update documentation. | Kurt B. Kaiser | 2003-01-10 | 4 | -238/+323 |
|
|
* | SF bug #652933 (for IdleFork): Open Module "math" Fails (Hettinger) | Kurt B. Kaiser | 2003-01-10 | 1 | -1/+4 |
|
|
* | SF #665913, Fix mmap module core dump with unix | Neal Norwitz | 2003-01-10 | 1 | -0/+18 |
|
|
* | M configDialog.py | Kurt B. Kaiser | 2003-01-10 | 2 | -82/+97 |
|
|
* | Python 2.1's string module doesn't have ascii_letters, so let's just | Barry Warsaw | 2003-01-10 | 1 | -13/+10 |
|
|
* | Cleanups, and conversion of assert to assertEqual() | Barry Warsaw | 2003-01-10 | 1 | -71/+69 |
|
|
* | 1. Make finding Python help docs more robust, including the installed | Kurt B. Kaiser | 2003-01-10 | 1 | -19/+29 |
|
|
* | Got rid of the timetz type entirely. This was a bit trickier than I | Tim Peters | 2003-01-10 | 1 | -1/+1 |
|
|
* | Default the OK key in the Save Before Run dialog. | Kurt B. Kaiser | 2003-01-10 | 1 | -0/+1 |
|
|
* | support unicode in menu items | Just van Rossum | 2003-01-09 | 1 | -1/+4 |
|
|
* | cleaned up Jack's Mac OS9 changes | Just van Rossum | 2003-01-09 | 1 | -5/+1 |
|
|
* | Make the test scripts work again with narrow Python builds. | Walter Dörwald | 2003-01-09 | 1 | -1/+1 |
|
|
* | add newline to source before compilation | Just van Rossum | 2003-01-09 | 1 | -1/+1 |
|
|
* | Add a few test cases to increase code coverage: | Walter Dörwald | 2003-01-08 | 1 | -0/+115 |
|
|
* | Add a test that exercises the error handling part of | Walter Dörwald | 2003-01-08 | 1 | -0/+6 |
|
|
* | SF patch 661583: Remove old code from lib\os.py | Tim Peters | 2003-01-08 | 1 | -10/+8 |
|
|
* | Utterly minimal changes to collapse datetimetz into datetime, and timetz | Tim Peters | 2003-01-08 | 1 | -68/+89 |
|
|
* | Fix bug 427345 [related to IE's additional input on POST request]. | Steve Holden | 2003-01-08 | 1 | -0/+7 |
|
|
* | Various tweaks to make the test work on the Mac. | Jack Jansen | 2003-01-08 | 1 | -3/+12 |
|
|
* | Always define getenv(), as suggested by Guido. This means that os.getenv() is... | Jack Jansen | 2003-01-08 | 1 | -5/+5 |
|
|
* | Test that chmod() actually exists before calling it (it doesn't on MacOS9). | Jack Jansen | 2003-01-08 | 1 | -1/+2 |
|
|
* | Removed the SetDates warning. The warning is in the readme, and the print sta... | Jack Jansen | 2003-01-08 | 1 | -2/+2 |
|
|
* | quashed another case of the 32-bit warning. | Jack Jansen | 2003-01-08 | 1 | -1/+1 |
|
|
* | Updated the list of expected skips for MacPython-OS9. | Jack Jansen | 2003-01-08 | 1 | -0/+8 |
|
|
* | n the Mac the frozen import that should fail actually succeeds, and we know i... | Jack Jansen | 2003-01-08 | 1 | -6/+7 |
|
|
* | Added the Mac to platforms that don't have user/group/other modes. | Jack Jansen | 2003-01-08 | 1 | -3/+6 |
|
|
* | - be explicit: audio data files should be opened in binary mode | Fred Drake | 2003-01-08 | 1 | -2/+2 |
|
|
* | Enable building and testing of ossaudiodev for Linux. | Guido van Rossum | 2003-01-08 | 1 | -0/+7 |
|
|
* | Fix for SF bug #642358: only provide a new with a __dict__ or | Guido van Rossum | 2003-01-07 | 1 | -0/+14 |
|
|
* | Much clearer when super() is used. | Raymond Hettinger | 2003-01-07 | 1 | -5/+5 |
|
|
* | Revert change 1.37. | Raymond Hettinger | 2003-01-07 | 1 | -12/+12 |
|
|
* | SF patch #662433: Fill arraymodule's tp_iter and sq_contains slots | Raymond Hettinger | 2003-01-07 | 1 | -0/+6 |
|
|
* | CHARSETS, ALIASES, CODEC_MAP: SF feature request 633543, Korean | Barry Warsaw | 2003-01-07 | 1 | -0/+37 |
|
|
* | Add a test for a feature added in rev. 2.82 of typeobject.c: | Guido van Rossum | 2003-01-06 | 1 | -0/+53 |
|
|
* | Add some print statements in verbose mode to announce that the newest | Guido van Rossum | 2003-01-06 | 1 | -0/+8 |
|
|
* | * add mms (windows media) as another scheme | Skip Montanaro | 2003-01-06 | 2 | -19/+18 |
|
|