summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Add Listbox.itemconfig[ure] call. (A "recent" addition to Tk -- 8.0Guido van Rossum2001-09-011-5/+26
* Allow for the possibility that globals['__name__'] does not exist;Guido van Rossum2001-08-311-1/+4
* Correct name mangling algorithm, and add a comment.Guido van Rossum2001-08-311-2/+1
* SF bug #456621: normpath on Win32 not collapsing c:\\..Tim Peters2001-08-302-8/+35
* metaclass(): add some more examples of metaclasses, including oneGuido van Rossum2001-08-301-0/+104
* SF patch #455966: Allow leading 0 in float/imag literals.Tim Peters2001-08-302-2/+46
* Fix _convert_NAME() so that it doesn't store locals for class bodies.Jeremy Hylton2001-08-303-15/+15
* Add testcases for inheritance from tricky builtins (numbers, strings,Guido van Rossum2001-08-301-0/+74
* Revert the previous patch to test_pow.py and move the test to test_unary.pyFred Drake2001-08-302-10/+8
* Added a regression test for the negation-of-exponentiation optimizationFred Drake2001-08-301-0/+11
* spurious popJeremy Hylton2001-08-301-1/+0
* win_getpass(): if sys.stdin is not sys.__stdin__, useGuido van Rossum2001-08-301-0/+2
* Add a new function imp.lock_held(), and use it to skip test_threaded_importTim Peters2001-08-301-4/+6
* Flush output more aggressively. This makes things look better ifNeil Schemenauer2001-08-291-0/+2
* Track the block stack more reasonably in order to handle continue inJeremy Hylton2001-08-291-13/+45
* Improve stack depth computation for try/except and try/finallyJeremy Hylton2001-08-291-1/+4
* Add __getitem__() handler for use by visitContinue()Jeremy Hylton2001-08-291-0/+2
* Generate SET_LINENO for list and tuple literals when the open parenJeremy Hylton2001-08-291-1/+3
* Make sure that atoms (Tuple, List, etc.) have lineno attributesJeremy Hylton2001-08-291-2/+4
* Fix off-by-one errors in code to find depth of stack.Jeremy Hylton2001-08-291-3/+3
* Workaround by Tim Peters to skip this test if run from test.autotest,Jack Jansen2001-08-291-1/+5
* Undo change from list to dict for handling varnames, consts, etc.Jeremy Hylton2001-08-291-49/+22
* Change default() to use getChildNodes() instead of getChildren()Jeremy Hylton2001-08-291-3/+2
* Support // and //=Jeremy Hylton2001-08-291-1/+6
* Add support for // and //=.Jeremy Hylton2001-08-291-5/+16
* Add generator detection to symbol table.Jeremy Hylton2001-08-291-9/+35
* Modify name conversion to be (hopefully) a bit more efficient.Jeremy Hylton2001-08-291-17/+52
* Revise implementations of getChildren() and getChildNodes().Jeremy Hylton2001-08-291-100/+602
* Add opcodes for floor division and true division (PEP 238)Jeremy Hylton2001-08-291-0/+4
* Add tests for augmented floor divisionJeremy Hylton2001-08-292-0/+27
* Don't include doc string of class in its code childJeremy Hylton2001-08-291-0/+5
* Now that int is subclassable, have to change a test that tests forGuido van Rossum2001-08-291-2/+2
* marshal.c r_long64: When reading a TYPE_INT64 value on a box with 32-bitTim Peters2001-08-291-0/+41
* pickle.py, load_int(): Match cPickle's just-repaired ability to unpickleTim Peters2001-08-282-1/+20
* Update an email address.Barry Warsaw2001-08-281-10/+10
* Fix the test again due to fewer calls to __getattr__.Guido van Rossum2001-08-281-3/+1
* Fix one test to reflect the change in method lookup policy.Guido van Rossum2001-08-281-2/+1
* Make sure the JUMP_ABSOLUTE and POP_BLOCK at the end of a for loop areJeremy Hylton2001-08-281-1/+1
* XXX_NAME ops should affect varnamesJeremy Hylton2001-08-281-1/+4
* Generate FOR_ITER-based loops instead of old FOR_LOOP-based loopsJeremy Hylton2001-08-281-5/+9
* FOR_ITER is a jrel_op() not a plain old def_op()Jeremy Hylton2001-08-281-1/+1
* Added list of tests expected to be skipped on the mac.Jack Jansen2001-08-281-0/+36
* Handle private namesJeremy Hylton2001-08-273-20/+50
* A quick hack to make the test pass on the Mac (similar to the quick hackJack Jansen2001-08-271-0/+4
* emit SET_LINENO for augmented assignmentsJeremy Hylton2001-08-271-0/+4
* Many changes -- bug fixes and sundry improvementsJeremy Hylton2001-08-271-33/+30
* Fix another test still expecting overflow on big int literals.Tim Peters2001-08-271-7/+2
* Change test_overflow to test_no_overflow; looks like big int literalsTim Peters2001-08-271-4/+5
* Fix for sibling nodes that define the same free variableJeremy Hylton2001-08-271-6/+10
* Add lookup_name() to optimize use of stack framesJeremy Hylton2001-08-271-5/+21