| Commit message (Expand) | Author | Age | Files | Lines |
* | Make dir() wordier (see the new docstring). The new behavior is a mixed | Tim Peters | 2001-09-03 | 3 | -11/+55 |
|
|
* | Made a doctest out of the examples in Guido's type/class tutorial. | Tim Peters | 2001-09-03 | 1 | -0/+498 |
|
|
* | Make dictionary() a real constructor. Accepts at most one argument, "a | Tim Peters | 2001-09-02 | 1 | -1/+51 |
|
|
* | Whitespace normalization (tabs -> 4 spaces) in the Mac expectations. | Guido van Rossum | 2001-09-02 | 1 | -35/+35 |
|
|
* | Correct name mangling algorithm, and add a comment. | Guido van Rossum | 2001-08-31 | 1 | -2/+1 |
|
|
* | SF bug #456621: normpath on Win32 not collapsing c:\\.. | Tim Peters | 2001-08-30 | 1 | -0/+24 |
|
|
* | metaclass(): add some more examples of metaclasses, including one | Guido van Rossum | 2001-08-30 | 1 | -0/+104 |
|
|
* | SF patch #455966: Allow leading 0 in float/imag literals. | Tim Peters | 2001-08-30 | 1 | -0/+44 |
|
|
* | Add testcases for inheritance from tricky builtins (numbers, strings, | Guido van Rossum | 2001-08-30 | 1 | -0/+74 |
|
|
* | Revert the previous patch to test_pow.py and move the test to test_unary.py | Fred Drake | 2001-08-30 | 2 | -10/+8 |
|
|
* | Added a regression test for the negation-of-exponentiation optimization | Fred Drake | 2001-08-30 | 1 | -0/+11 |
|
|
* | Add a new function imp.lock_held(), and use it to skip test_threaded_import | Tim Peters | 2001-08-30 | 1 | -4/+6 |
|
|
* | Workaround by Tim Peters to skip this test if run from test.autotest, | Jack Jansen | 2001-08-29 | 1 | -1/+5 |
|
|
* | Add tests for augmented floor division | Jeremy Hylton | 2001-08-29 | 2 | -0/+27 |
|
|
* | Now that int is subclassable, have to change a test that tests for | Guido van Rossum | 2001-08-29 | 1 | -2/+2 |
|
|
* | marshal.c r_long64: When reading a TYPE_INT64 value on a box with 32-bit | Tim Peters | 2001-08-29 | 1 | -0/+41 |
|
|
* | pickle.py, load_int(): Match cPickle's just-repaired ability to unpickle | Tim Peters | 2001-08-28 | 1 | -0/+15 |
|
|
* | Update an email address. | Barry Warsaw | 2001-08-28 | 1 | -10/+10 |
|
|
* | Fix the test again due to fewer calls to __getattr__. | Guido van Rossum | 2001-08-28 | 1 | -3/+1 |
|
|
* | Fix one test to reflect the change in method lookup policy. | Guido van Rossum | 2001-08-28 | 1 | -2/+1 |
|
|
* | Added list of tests expected to be skipped on the mac. | Jack Jansen | 2001-08-28 | 1 | -0/+36 |
|
|
* | A quick hack to make the test pass on the Mac (similar to the quick hack | Jack Jansen | 2001-08-27 | 1 | -0/+4 |
|
|
* | Fix another test still expecting overflow on big int literals. | Tim Peters | 2001-08-27 | 1 | -7/+2 |
|
|
* | Change test_overflow to test_no_overflow; looks like big int literals | Tim Peters | 2001-08-27 | 1 | -4/+5 |
|
|
* | SF bug [#455775] float parsing discrepancy. | Tim Peters | 2001-08-27 | 1 | -0/+15 |
|
|
* | Undo previous checkin -- Barry fixed it better. | Guido van Rossum | 2001-08-24 | 1 | -2/+0 |
|
|
* | Update test output to match new (more informative) error message about | Guido van Rossum | 2001-08-24 | 1 | -2/+2 |
|
|
* | Quick and dirty fix for test_extcall failures trigged by Guido's | Barry Warsaw | 2001-08-24 | 2 | -4/+8 |
|
|
* | Remove the local 'getset' class -- this is now a built-in type with | Guido van Rossum | 2001-08-24 | 1 | -18/+0 |
|
|
* | Rip the import repr truncation test out of here and put it in test_repr.py | Barry Warsaw | 2001-08-24 | 1 | -35/+0 |
|
|
* | Added lots of tests for reprs of "simple" objects, such as file, | Barry Warsaw | 2001-08-24 | 1 | -0/+156 |
|
|
* | supers(): typo -- "if verify" should be "if verbose". | Guido van Rossum | 2001-08-24 | 1 | -1/+1 |
|
|
* | Add test suite for super(). | Guido van Rossum | 2001-08-24 | 1 | -0/+32 |
|
|
* | Add a test for the new getset type. | Guido van Rossum | 2001-08-24 | 1 | -0/+24 |
|
|
* | Looks like someone forgot the change the expected output file. | Tim Peters | 2001-08-24 | 1 | -14/+14 |
|
|
* | Add a test for the new // operator too. | Tim Peters | 2001-08-23 | 1 | -0/+4 |
|
|
* | SF bug [#454456] int overflow code needs tests. | Tim Peters | 2001-08-23 | 1 | -0/+61 |
|
|
* | Remove test_long's expected-output file. | Tim Peters | 2001-08-23 | 2 | -9/+8 |
|
|
* | Committing and closing SF patch #441348 to help Jython to pass this test. | Finn Bock | 2001-08-23 | 1 | -1/+1 |
|
|
* | Turn OverflowWarning into an error locally, in order to make the | Guido van Rossum | 2001-08-23 | 1 | -0/+3 |
|
|
* | Merge changes from r22a2-branch back into trunk. Also, change patch | Barry Warsaw | 2001-08-22 | 1 | -0/+3 |
|
|
* | A test of SSL support, using a roundabout method suggested by Guido. | Barry Warsaw | 2001-08-20 | 1 | -0/+13 |
|
|
* | Use test_support.requires() to decide whether additional largefile | Barry Warsaw | 2001-08-20 | 1 | -7/+8 |
|
|
* | Removed --have-resources flag in favor of the more granular -u/--use | Barry Warsaw | 2001-08-20 | 1 | -22/+61 |
|
|
* | use_large_resources => use_resources | Barry Warsaw | 2001-08-20 | 1 | -2/+8 |
|
|
* | Test failed because these was no expected-output file, but always printed | Tim Peters | 2001-08-20 | 1 | -5/+8 |
|
|
* | Deal more appropriately with bare ampersands and pointy brackets; this | Fred Drake | 2001-08-20 | 1 | -7/+27 |
|
|
* | Add test case to cover multiple future statements on separate lines of | Jeremy Hylton | 2001-08-20 | 1 | -0/+11 |
|
|
* | Fix SF bug [ #450245 ] Error in parsing future stmts | Jeremy Hylton | 2001-08-20 | 3 | -0/+5 |
|
|
* | Committing and closing SF patch #403671 by Finn Bock to help Jython | Barry Warsaw | 2001-08-20 | 1 | -11/+31 |
|
|