Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Deleted pickle/unpickle code for the old datetime and time classes -- it's | Tim Peters | 2003-01-08 | 1 | -160/+0 |
| | | | | unreachable now. | ||||
* | Utterly minimal changes to collapse datetimetz into datetime, and timetz | Tim Peters | 2003-01-08 | 3 | -86/+107 |
| | | | | | | | | | into time. This is little more than *exporting* the datetimetz object under the name "datetime", and similarly for timetz. A good implementation of this change requires more work, but this is fully functional if you don't stare too hard at the internals (e.g., right now a type named "datetime" shows up as a base class of the type named "datetime"). The docs also need extensive revision, not part of this checkin. | ||||
* | Remove variable owned from PyUnicode_FromEncodedObject, which is unused | Walter Dörwald | 2003-01-08 | 1 | -7/+0 |
| | | | | (except for Py_DECREF calls) since the introduction of __unicode__. | ||||
* | 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() ↵ | Jack Jansen | 2003-01-08 | 1 | -5/+5 |
| | | | | is also defined for MacPython-OS9 (even though it doesn't actually do anything useful), and it shouldn't hurt on other platforms. | ||||
* | 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 ↵ | Jack Jansen | 2003-01-08 | 1 | -2/+2 |
| | | | | statement was too obtrusive (it appeared during the installation process, and the user needed to close the resulting window manually). | ||||
* | 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 ↵ | Jack Jansen | 2003-01-08 | 1 | -6/+7 |
| | | | | it, so skip the test in stead of confusing the end user. | ||||
* | Added the Mac to platforms that don't have user/group/other modes. | Jack Jansen | 2003-01-08 | 1 | -3/+6 |
| | | | | Set the limit for the number of open files to 32 if platform==mac. | ||||
* | Made "ascii" the default encoding for MacPython, as suggested by MvL, and ↵ | Jack Jansen | 2003-01-08 | 1 | -0/+5 |
| | | | | ripped out my previous changes to test_unicode. Doing this for 2.3a1 should give people enough time to complain, if they want to, and then we can see whether we want to do anything about it. | ||||
* | Added a couple of casts to make this compile with CodeWarrior. | Jack Jansen | 2003-01-08 | 1 | -3/+3 |
| | |||||
* | Merging the various tweaks for MacPython-OS9 2.3a1 back into the trunk. | Jack Jansen | 2003-01-08 | 27 | -290/+220 |
| | |||||
* | Mention the change from patch #664376. | Thomas Heller | 2003-01-08 | 1 | -0/+3 |
| | |||||
* | Patch #664376: sys.path[0] should contain absolute pathname. | Thomas Heller | 2003-01-08 | 1 | -0/+12 |
| | | | | | | | | This fixes the problem on Windows - that's the only system where I can test it. It leaves sys.argv alone and only changes sys.path[0] to an absolute pathname. | ||||
* | Add notes about the linuxaudiodev and ossaudiodev modules. | Fred Drake | 2003-01-08 | 1 | -0/+8 |
| | |||||
* | - be explicit: audio data files should be opened in binary mode | Fred Drake | 2003-01-08 | 1 | -2/+2 |
| | | | | | - ossaudiodev.open() raises IOError, not ossaudiodev.error, for cases which get mapped to TestSkipped | ||||
* | command doesn't work, but program does, not sure it's correct, though | Neal Norwitz | 2003-01-08 | 1 | -1/+1 |
| | |||||
* | There's no such method as has_option() -- should be has_extn(). | Greg Ward | 2003-01-08 | 1 | -2/+2 |
| | |||||
* | Rewrite awkward/ungrammatical sentence. | Greg Ward | 2003-01-08 | 1 | -3/+3 |
| | | | | Typo fix. | ||||
* | Bump version number | Andrew M. Kuchling | 2003-01-08 | 1 | -1/+1 |
| | |||||
* | Add reminder that ossaudiodev can/should also be built on FreeBSD. | Greg Ward | 2003-01-08 | 1 | -0/+2 |
| | |||||
* | Enable building and testing of ossaudiodev for Linux. | Guido van Rossum | 2003-01-08 | 2 | -0/+8 |
| | |||||
* | Note about rexec.py and Bastion.py. This requires doc changes and | Guido van Rossum | 2003-01-07 | 1 | -0/+3 |
| | | | | whatsnew updates as well. | ||||
* | Document EX_OK and friends. | Barry Warsaw | 2003-01-07 | 1 | -0/+114 |
| | |||||
* | Test for presence of sysexits.h and set HAVE_SYSEXITS_H if so. Used | Barry Warsaw | 2003-01-07 | 3 | -542/+1391 |
| | | | | by posixmodule.c. | ||||
* | SF #664011, move tarfile module in docs | Neal Norwitz | 2003-01-07 | 1 | -1/+1 |
| | |||||
* | all_ins(): EX_OK and friends, constants from sysexits.h | Barry Warsaw | 2003-01-07 | 1 | -0/+57 |
| | |||||
* | A note about EX_OK and friends in the posixmodule. | Barry Warsaw | 2003-01-07 | 1 | -0/+2 |
| | |||||
* | Fix from Michael Stone for SF bug #660476 and #513033 (bogus thread | Guido van Rossum | 2003-01-07 | 3 | -13/+12 |
| | | | | state swaps in readline). | ||||
* | A few more whitespace normalizations. | Guido van Rossum | 2003-01-07 | 1 | -1/+4 |
| | |||||
* | Various cleanups: | Guido van Rossum | 2003-01-07 | 1 | -45/+80 |
| | | | | | | | | - Whitespace normalization. - Cleaned up some comments. - Broke long lines. | ||||
* | Use regular expressions for branch matching, to avoid including | Guido van Rossum | 2003-01-07 | 1 | -8/+11 |
| | | | | changes on a sub-branch into output for a given branch. | ||||
* | Fix for SF bug #642358: only provide a new with a __dict__ or | Guido van Rossum | 2003-01-07 | 2 | -4/+38 |
| | | | | | __weaklist__ descriptor if we added __dict__ or __weaklist__, respectively. With unit test. | ||||
* | Much clearer when super() is used. | Raymond Hettinger | 2003-01-07 | 1 | -5/+5 |
| | |||||
* | SF bug #652933 (for IdleFork): Open Module "math" Fails | Raymond Hettinger | 2003-01-07 | 1 | -1/+4 |
| | | | | | When a module doesn't have a __path__ attribute, trigger a dialog box rather than dumping a traceback to the console. | ||||
* | Revert change 1.37. | Raymond Hettinger | 2003-01-07 | 1 | -12/+12 |
| | | | | | The nanoseconds saved by using dict.fromkeys aren't worth the loss in clarity. Linear searches live on. | ||||
* | SF patch #662433: Fill arraymodule's tp_iter and sq_contains slots | Raymond Hettinger | 2003-01-07 | 2 | -2/+127 |
| | |||||
* | CHARSETS, ALIASES, CODEC_MAP: SF feature request 633543, Korean | Barry Warsaw | 2003-01-07 | 1 | -0/+37 |
| | | | | | | | | | support and other charset defaults. See also: http://article.gmane.org/gmane.comp.python.mime.devel/250 (this just commits the last bit of the article that wasn't part of email 2.4.3.) | ||||
* | Add tarfile module | Andrew M. Kuchling | 2003-01-07 | 1 | -0/+4 |
| | |||||
* | Add a test for a feature added in rev. 2.82 of typeobject.c: | Guido van Rossum | 2003-01-06 | 1 | -0/+53 |
| | | | | | | | | | | | | | | - SLOT1BINFULL() macro: changed this to check for __rop__ overriding __op__, like binary_op1() in abstract.c -- the latter only calls the slot function once if both types use the same slot function, so the slot function must make both calls -- which it already did for the __op__, __rop__ order, but not yet for the __rop__, __op__ order when B.__class__ is a subclass of A.__class__. Also test the refinement added in rev. 2.201 that fixes the problem reported in SF bug #623669. Also test a similar provision in abstract.c's binary_op1(). | ||||
* | Add a refinement to SLOT1BINFULL() that fixes the problem reported in | Guido van Rossum | 2003-01-06 | 1 | -1/+36 |
| | | | | | SF bug #623669: only try (e.g.) __rdiv__ before __div__ if the right class actually overrides it. | ||||
* | GvR's idea to use memset() for the most common special case of repeating | Raymond Hettinger | 2003-01-06 | 1 | -1/+5 |
| | | | | | a single character. Shaves another 10% off the running time by avoiding the lg2(N) loops and cache effects for the other cases. | ||||
* | Add some print statements in verbose mode to announce that the newest | Guido van Rossum | 2003-01-06 | 1 | -0/+8 |
| | | | | | tests are run. (All tests in this module should have one of these at the top.) | ||||
* | * add mms (windows media) as another scheme | Skip Montanaro | 2003-01-06 | 2 | -19/+18 |
| | | | | * reformat schemes to 80 columns | ||||
* | Add Tix and rexec changes | Andrew M. Kuchling | 2003-01-06 | 1 | -1/+17 |
| | |||||
* | Fix spelling. | Raymond Hettinger | 2003-01-06 | 1 | -1/+1 |
| | |||||
* | delete reference to defunct Misc/HPUX-NOTES. Adjust reference for BeOS | Skip Montanaro | 2003-01-06 | 1 | -6/+5 |
| | | | | notes. |