History log of /external/python/cpython2/Parser/acceler.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
c83ea137d7e717f764e2f31fc2544f522de7d857 09-May-2010 Antoine Pitrou <solipsis@pitrou.net> Untabify C files. Will watch buildbots.
/external/python/cpython2/Parser/acceler.c
93b4b88e960d5868ca2c0a109a74e1a8e06d3348 29-Jun-2004 Andrew M. Kuchling <amk@amk.ca> [Patch #974633] Check PyObject_MALLOC return for error
/external/python/cpython2/Parser/acceler.c
fb2765666f23434061e5def1aa8392797edf1f43 19-Nov-2003 Jack Jansen <jack.jansen@cwi.nl> Getting rid of support for the ancient Apple MPW compiler.
/external/python/cpython2/Parser/acceler.c
80d4e2acf58433fb2e84ee55d183a7995dc44d0e 04-Aug-2002 Andrew MacIntyre <andymac@bullseye.apana.org.au> SF patch #578297:

Change the parser and compiler to use PyMalloc.

Only the files implementing processes that will request memory
allocations small enough for PyMalloc to be a win have been
changed, which are:-
- Python/compile.c
- Parser/acceler.c
- Parser/node.c
- Parser/parsetok.c

This augments the aggressive overallocation strategy implemented by
Tim Peters in PyNode_AddChild() [Parser/node.c], in reducing the
impact of platform malloc()/realloc()/free() corner case behaviour.
Such corner cases are known to be triggered by test_longexp and
test_import.

Jeremy Hylton, in accepting this patch, recommended this as a
bugfix candidate for 2.2. While the changes to Python/compile.c
and Parser/node.c backport easily (and could go in), the changes
to Parser/acceler.c and Parser/parsetok.c require other not
insignificant changes as a result of the differences in the memory
APIs between 2.3 and 2.2, which I'm not in a position to work
through at the moment. This is a pity, as the Parser/parsetok.c
changes are the most important after the Parser/node.c changes, due
to the size of the memory requests involved and their frequency.
/external/python/cpython2/Parser/acceler.c
7b4c8e485c6ec3cc4605b6e1a24bd3a324f1c0a5 11-Jul-2002 Jeremy Hylton <jeremy@alum.mit.edu> I trust the parser accelators are getting added :-).
/external/python/cpython2/Parser/acceler.c
8586991099e4ace18ee94163a96b8ea1bed77ebe 02-Sep-2000 Guido van Rossum <guido@python.org> REMOVED all CWI, CNRI and BeOpen copyright markings.
This should match the situation in the 1.6b1 tree.
/external/python/cpython2/Parser/acceler.c
23c9e0024af99379ae517b016b874d57127e9a97 22-Jul-2000 Thomas Wouters <thomas@python.org> Mass ANSIfication.

Work around intrcheck.c's desire to pass 'PyErr_CheckSignals' to
'Py_AddPendingCall' by providing a (static) wrapper function that has the
right number of arguments.
/external/python/cpython2/Parser/acceler.c
dbd9ba6a6c19c3d06f5684b3384a934f740038db 09-Jul-2000 Tim Peters <tim.peters@gmail.com> Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.
/external/python/cpython2/Parser/acceler.c
ffcc3813d82e6b96db79f518f4e67b940a13ce64 01-Jul-2000 Guido van Rossum <guido@python.org> Change copyright notice - 2nd try.
/external/python/cpython2/Parser/acceler.c
fd71b9e9d496caa510dec56a9b69966558d6ba5d 01-Jul-2000 Guido van Rossum <guido@python.org> Change copyright notice.
/external/python/cpython2/Parser/acceler.c
aee094cc60b4b05e28cfd9e1a2add1b97ededbb6 02-Aug-1997 Guido van Rossum <guido@python.org> Added finalization routines.
/external/python/cpython2/Parser/acceler.c
86bea46b3d16c4ed0453e17f241ddbdfade76c98 29-Apr-1997 Guido van Rossum <guido@python.org> Another directory quickly renamed.
/external/python/cpython2/Parser/acceler.c
408027ea4635de5c892b28c4fdf41840eb9089a4 30-Dec-1996 Guido van Rossum <guido@python.org> Rename DEBUG macro to Py_DEBUG
/external/python/cpython2/Parser/acceler.c
d266eb460e20ded087d01a29da0a230e235afc40 25-Oct-1996 Guido van Rossum <guido@python.org> New permission notice, includes CNRI.
/external/python/cpython2/Parser/acceler.c
b9f8d6e54d72d108648a411174e57779c212871a 04-Jan-1995 Guido van Rossum <guido@python.org> Added 1995 to copyright message.
/external/python/cpython2/Parser/acceler.c
1d5735e84621a7fe68d361fa0e289fa2c3310836 30-Aug-1994 Guido van Rossum <guido@python.org> Merge back to main trunk
/external/python/cpython2/Parser/acceler.c
9bfef44d97d1ae24e03717e3d59024b44626a9de 29-Mar-1993 Guido van Rossum <guido@python.org> * Changed all copyright messages to include 1993.
* Stubs for faster implementation of local variables (not yet finished)
* Added function name to code object. Print it for code and function
objects. THIS MAKES THE .PYC FILE FORMAT INCOMPATIBLE (the version
number has changed accordingly)
* Print address of self for built-in methods
* New internal functions getattro and setattro (getattr/setattr with
string object arg)
* Replaced "dictobject" with more powerful "mappingobject"
* New per-type functio tp_hash to implement arbitrary object hashing,
and hashobject() to interface to it
* Added built-in functions hash(v) and hasattr(v, 'name')
* classobject: made some functions static that accidentally weren't;
added __hash__ special instance method to implement hash()
* Added proper comparison for built-in methods and functions
/external/python/cpython2/Parser/acceler.c
888d205fff5fc3151adc663e23d12802d5418c00 03-Sep-1992 Guido van Rossum <guido@python.org> Print warnings to stderr and correct spelling
/external/python/cpython2/Parser/acceler.c
bab9d0385585fcddf6ee96a4ca38dd18e3517f54 05-Apr-1992 Guido van Rossum <guido@python.org> Copyright for 1992 added
/external/python/cpython2/Parser/acceler.c
9abc539846c5633331c01d8c3a08e5dbe1aa849d 27-Mar-1992 Guido van Rossum <guido@python.org> Lint fluff
/external/python/cpython2/Parser/acceler.c
7d8b509575c6138dc201d13c215359c0b68dbb18 10-Sep-1991 Guido van Rossum <guido@python.org> Added work-arounds for MPW 3.{1,2?} code generation bug.
/external/python/cpython2/Parser/acceler.c
f70e43a073b36c6f6e9894c01025243a77a452d4 19-Feb-1991 Guido van Rossum <guido@python.org> Added copyright notice.
/external/python/cpython2/Parser/acceler.c
3f5da24ea304e674a9abbdcffc4d671e32aa70f1 20-Dec-1990 Guido van Rossum <guido@python.org> "Compiling" version
/external/python/cpython2/Parser/acceler.c
85a5fbbdfea617f6cc8fae82c9e8c2b5c424436d 14-Oct-1990 Guido van Rossum <guido@python.org> Initial revision
/external/python/cpython2/Parser/acceler.c