| Commit message (Expand) | Author | Age | Files | Lines |
* | Change long/long true division to return as many good bits as it can; | Tim Peters | 2001-09-04 | 1 | -0/+38 |
|
|
* | Raise OverflowError when appropriate on long->float conversion. Most of | Tim Peters | 2001-09-04 | 1 | -0/+37 |
|
|
* | builtin_dir(): Treat classic classes like types. Use PyDict_Keys instead | Tim Peters | 2001-09-04 | 2 | -11/+32 |
|
|
* | Don't use dir() to find instance attribute names. | Neil Schemenauer | 2001-09-03 | 1 | -3/+7 |
|
|
* | Restore a line deleted by mistake. | Tim Peters | 2001-09-03 | 1 | -0/+2 |
|
|
* | New restriction on pow(x, y, z): If z is not None, x and y must be of | Tim Peters | 2001-09-03 | 4 | -25/+41 |
|
|
* | 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 |
|
|
* | Add Listbox.itemconfig[ure] call. (A "recent" addition to Tk -- 8.0 | Guido van Rossum | 2001-09-01 | 1 | -5/+26 |
|
|
* | Allow for the possibility that globals['__name__'] does not exist; | Guido van Rossum | 2001-08-31 | 1 | -1/+4 |
|
|
* | 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 | 2 | -8/+35 |
|
|
* | 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 | 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 |
|
|