summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Fix typo: double semicolons.Guido van Rossum2001-08-302-2/+2
* Make the Py<type>_Check() macro use PyObject_TypeCheck().Guido van Rossum2001-08-303-3/+3
* Squash new compiler wng in debug build.Tim Peters2001-08-301-1/+1
* gcmodule is now always compiledNeil Schemenauer2001-08-301-3/+0
* gcmodule is now enabled hereNeil Schemenauer2001-08-301-0/+6
* Make more things internal to this file. RemoveNeil Schemenauer2001-08-301-93/+148
* Always build gcmodule.Neil Schemenauer2001-08-291-297/+303
* Flush output more aggressively. This makes things look better ifNeil Schemenauer2001-08-291-0/+2
* Use new GC API. Remove usage of BASICSIZE macros.Neil Schemenauer2001-08-291-18/+18
* Use new GC API.Neil Schemenauer2001-08-298-99/+76
* Remove GC related code. It lives in gcmodule now.Neil Schemenauer2001-08-291-26/+1
* Make frames a PyVarObject. Use new GC API.Neil Schemenauer2001-08-291-30/+14
* Remove bogus PyGC_HEAD_SIZE.Neil Schemenauer2001-08-291-1/+1
* Change the GC type flag since the API has changed. Allow types usingNeil Schemenauer2001-08-291-50/+66
* Change the GC type flag since the API has changed. Allow types usingNeil Schemenauer2001-08-291-6/+10
* Make frames a PyVarObject instead of a PyObject.Neil Schemenauer2001-08-291-2/+1
* Always compile gcmodule.Neil Schemenauer2001-08-292-6/+3
* Track the block stack more reasonably in order to handle continue inJeremy Hylton2001-08-292-26/+90
* Improve stack depth computation for try/except and try/finallyJeremy Hylton2001-08-292-2/+8
* Add __getitem__() handler for use by visitContinue()Jeremy Hylton2001-08-292-0/+4
* Added xx and xxsubtype modules, for completeness and because xxsubtype is use...Jack Jansen2001-08-292-0/+7
* Started on release notes and readme for 2.2a2.Jack Jansen2001-08-292-52/+113
* SF bug [#456252] Python should never stomp on [u]intptr_t.Tim Peters2001-08-296-17/+22
* Generate SET_LINENO for list and tuple literals when the open parenJeremy Hylton2001-08-292-2/+6
* Make sure that atoms (Tuple, List, etc.) have lineno attributesJeremy Hylton2001-08-292-4/+8
* Fix off-by-one errors in code to find depth of stack.Jeremy Hylton2001-08-292-6/+6
* 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-292-98/+44
* Change default() to use getChildNodes() instead of getChildren()Jeremy Hylton2001-08-292-6/+4
* Support // and //=Jeremy Hylton2001-08-292-2/+12
* Add support for // and //=.Jeremy Hylton2001-08-292-10/+32
* Add generator detection to symbol table.Jeremy Hylton2001-08-292-18/+70
* Modify name conversion to be (hopefully) a bit more efficient.Jeremy Hylton2001-08-292-34/+104
* Revise implementations of getChildren() and getChildNodes().Jeremy Hylton2001-08-296-318/+1528
* 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-292-0/+10
* Now that int is subclassable, have to change a test that tests forGuido van Rossum2001-08-291-2/+2
* Make int, long and float subclassable.Guido van Rossum2001-08-293-14/+111
* Fix super() so that it is usable for static methods (like __new__) as well.Guido van Rossum2001-08-291-8/+27
* Make the PyXXX_Check() macros for the numeric types inheritance-aware.Guido van Rossum2001-08-294-4/+4
* GUSI on the Mac creates threads with a default stack size of 20KB, which isJack Jansen2001-08-291-1/+21
* Fix a minor markup typo.Fred Drake2001-08-291-1/+1
* marshal.c r_long64: When reading a TYPE_INT64 value on a box with 32-bitTim Peters2001-08-293-12/+70
* On Fred's suggestion, convert sprintf() examples to useBarry Warsaw2001-08-291-19/+11
* Add METH_O and METH_NOARGS changeAndrew M. Kuchling2001-08-291-9/+19
* pickle.py, load_int(): Match cPickle's just-repaired ability to unpickleTim Peters2001-08-282-1/+20
* load_int: The fallback to long ints was coded in such a way that itTim Peters2001-08-281-4/+3
* Update an email address.Barry Warsaw2001-08-281-10/+10
* Note change in fp literal syntax (e.g. "3e-" worked by accident before).Tim Peters2001-08-281-0/+3