| Commit message (Expand) | Author | Age | Files | Lines |
* | SF patch #455966: Allow leading 0 in float/imag literals. | Tim Peters | 2001-08-30 | 2 | -2/+46 |
|
|
* | Fix _convert_NAME() so that it doesn't store locals for class bodies. | Jeremy Hylton | 2001-08-30 | 3 | -15/+15 |
|
|
* | 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 |
|
|
* | spurious pop | Jeremy Hylton | 2001-08-30 | 1 | -1/+0 |
|
|
* | win_getpass(): if sys.stdin is not sys.__stdin__, use | Guido van Rossum | 2001-08-30 | 1 | -0/+2 |
|
|
* | Add a new function imp.lock_held(), and use it to skip test_threaded_import | Tim Peters | 2001-08-30 | 1 | -4/+6 |
|
|
* | Flush output more aggressively. This makes things look better if | Neil Schemenauer | 2001-08-29 | 1 | -0/+2 |
|
|
* | Track the block stack more reasonably in order to handle continue in | Jeremy Hylton | 2001-08-29 | 1 | -13/+45 |
|
|
* | Improve stack depth computation for try/except and try/finally | Jeremy Hylton | 2001-08-29 | 1 | -1/+4 |
|
|
* | Add __getitem__() handler for use by visitContinue() | Jeremy Hylton | 2001-08-29 | 1 | -0/+2 |
|
|
* | Generate SET_LINENO for list and tuple literals when the open paren | Jeremy Hylton | 2001-08-29 | 1 | -1/+3 |
|
|
* | Make sure that atoms (Tuple, List, etc.) have lineno attributes | Jeremy Hylton | 2001-08-29 | 1 | -2/+4 |
|
|
* | Fix off-by-one errors in code to find depth of stack. | Jeremy Hylton | 2001-08-29 | 1 | -3/+3 |
|
|
* | Workaround by Tim Peters to skip this test if run from test.autotest, | Jack Jansen | 2001-08-29 | 1 | -1/+5 |
|
|
* | Undo change from list to dict for handling varnames, consts, etc. | Jeremy Hylton | 2001-08-29 | 1 | -49/+22 |
|
|
* | Change default() to use getChildNodes() instead of getChildren() | Jeremy Hylton | 2001-08-29 | 1 | -3/+2 |
|
|
* | Support // and //= | Jeremy Hylton | 2001-08-29 | 1 | -1/+6 |
|
|
* | Add support for // and //=. | Jeremy Hylton | 2001-08-29 | 1 | -5/+16 |
|
|
* | Add generator detection to symbol table. | Jeremy Hylton | 2001-08-29 | 1 | -9/+35 |
|
|
* | Modify name conversion to be (hopefully) a bit more efficient. | Jeremy Hylton | 2001-08-29 | 1 | -17/+52 |
|
|
* | Revise implementations of getChildren() and getChildNodes(). | Jeremy Hylton | 2001-08-29 | 1 | -100/+602 |
|
|
* | Add opcodes for floor division and true division (PEP 238) | Jeremy Hylton | 2001-08-29 | 1 | -0/+4 |
|
|
* | Add tests for augmented floor division | Jeremy Hylton | 2001-08-29 | 2 | -0/+27 |
|
|
* | Don't include doc string of class in its code child | Jeremy Hylton | 2001-08-29 | 1 | -0/+5 |
|
|
* | 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 | 2 | -1/+20 |
|
|
* | 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 |
|
|
* | Make sure the JUMP_ABSOLUTE and POP_BLOCK at the end of a for loop are | Jeremy Hylton | 2001-08-28 | 1 | -1/+1 |
|
|
* | XXX_NAME ops should affect varnames | Jeremy Hylton | 2001-08-28 | 1 | -1/+4 |
|
|
* | Generate FOR_ITER-based loops instead of old FOR_LOOP-based loops | Jeremy Hylton | 2001-08-28 | 1 | -5/+9 |
|
|
* | FOR_ITER is a jrel_op() not a plain old def_op() | Jeremy Hylton | 2001-08-28 | 1 | -1/+1 |
|
|
* | Added list of tests expected to be skipped on the mac. | Jack Jansen | 2001-08-28 | 1 | -0/+36 |
|
|
* | Handle private names | Jeremy Hylton | 2001-08-27 | 3 | -20/+50 |
|
|
* | A quick hack to make the test pass on the Mac (similar to the quick hack | Jack Jansen | 2001-08-27 | 1 | -0/+4 |
|
|
* | emit SET_LINENO for augmented assignments | Jeremy Hylton | 2001-08-27 | 1 | -0/+4 |
|
|
* | Many changes -- bug fixes and sundry improvements | Jeremy Hylton | 2001-08-27 | 1 | -33/+30 |
|
|
* | 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 |
|
|
* | Fix for sibling nodes that define the same free variable | Jeremy Hylton | 2001-08-27 | 1 | -6/+10 |
|
|
* | Add lookup_name() to optimize use of stack frames | Jeremy Hylton | 2001-08-27 | 1 | -5/+21 |
|
|
* | Two changes to visitor API: | Jeremy Hylton | 2001-08-27 | 1 | -20/+23 |
|
|
* | Add content-type header to ftp URLs (SF patch #454553) | Jeremy Hylton | 2001-08-27 | 3 | -14/+27 |
|
|
* | SF bug [#455775] float parsing discrepancy. | Tim Peters | 2001-08-27 | 1 | -0/+15 |
|
|
* | Patch by Bill Noon: added 'dylib' as a library type along with | Jack Jansen | 2001-08-27 | 2 | -4/+9 |
|
|
* | Undo previous checkin -- Barry fixed it better. | Guido van Rossum | 2001-08-24 | 1 | -2/+0 |
|
|