- 15 Nis, 2007 1 kayıt (commit)
-
-
Nick Coghlan yazdı
-
- 06 Eyl, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 19 Ock, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Probably should be backported.
-
- 20 Eki, 2005 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
This change implements a new bytecode compiler, based on a transformation of the parse tree to an abstract syntax defined in Parser/Python.asdl. The compiler implementation is not complete, but it is in stable enough shape to run the entire test suite excepting two disabled tests.
-
- 12 Eki, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
* Py_BuildValue("(OOO)",a,b,c) --> PyTuple_Pack(3,a,b,c) * Py_BuildValue("()",a) --> PyTuple_New(0) * Py_BuildValue("O", a) --> Py_INCREF(a)
-
- 13 Agu, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 02 Agu, 2002 1 kayıt (commit)
-
-
Mark Hammond yazdı
for Py_Main(). Thanks to Kalle Svensson and Skip Montanaro for the patches.
-
- 06 Ara, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
The st_future slot of the symtable is not freed by PySymtable_Free() because it is shared by the symtable and compiling structs in compiel.c. Since it is shared, it is explicitly deallocated when the compiling struct is freed.
-
- 16 Nis, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 22 Mar, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 09 Şub, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
of nested functions. Either is allowed in a function if it contains no defs or lambdas or the defs and lambdas it contains have no free variables. If a function is itself nested and has free variables, either is illegal. Revise the symtable to use a PySymtableEntryObject, which holds all the revelent information for a scope, rather than using a bunch of st_cur_XXX pointers in the symtable struct. The changes simplify the internal management of the current symtable scope and of the stack. Added new C source file: Python/symtable.c. (Does the Windows build process need to be updated?) As part of these changes, the initial _symtable module interface introduced in 2.1a2 is replaced. A dictionary of PySymtableEntryObjects are returned.
-
- 02 Şub, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-