summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Two small changes:Guido van Rossum1997-01-271-5/+3
* new.code() has grown another foot, eh, another two arguments.Guido van Rossum1997-01-271-1/+1
* Plug a leak with calling something other than a function or method isGuido van Rossum1997-01-271-4/+3
* Patches for (two forms of) optional dynamic execution profiling --Guido van Rossum1997-01-241-0/+68
* Change the control flow for error handling in the function prelude toGuido van Rossum1997-01-241-23/+17
* Added optional interface for dynamic execution profile (to be gatheredGuido van Rossum1997-01-241-2/+11
* Get the line number from PyCode_Addr2Line instead of believingGuido van Rossum1997-01-241-1/+4
* When a recycled frame has more local+stack slots than needed,Guido van Rossum1997-01-241-2/+4
* Two more arguments to newcodeobject -- first lineno and lineno table.Guido van Rossum1997-01-241-4/+7
* New magin number (because of linenumber table).Guido van Rossum1997-01-241-1/+1
* Marshal the line number table of code objects.Guido van Rossum1997-01-241-1/+9
* Instead of emitting SET_LINENO instructions, generate a line numberGuido van Rossum1997-01-241-6/+102
* Add co_firstlineno and co_lnotab, for the line number table generatedGuido van Rossum1997-01-241-1/+4
* Initialize the ob_type field of PyAST_Type dynamically (inGuido van Rossum1997-01-231-3/+7
* Forget keeping track of whether a dictionary contains all internedGuido van Rossum1997-01-232-178/+110
* Various notes added:Guido van Rossum1997-01-221-16/+32
* The usualGuido van Rossum1997-01-221-199/+228
* A number of new symbols have appeared (courtesy autoconf 2.12?)Guido van Rossum1997-01-221-0/+15
* Add --with-dec-threads, for DEL Alpha, which requires -threads as theGuido van Rossum1997-01-221-6/+19
* Added PyCObject_Import.Guido van Rossum1997-01-223-18/+44
* (libparser.tex): Fix typo found by Mark Hammond.Fred Drake1997-01-222-2/+2
* Bump version to 1.5a1.Guido van Rossum1997-01-221-1/+1
* Bump install version to 1.5.Guido van Rossum1997-01-222-2/+2
* Remove GetOwner, add GetBuildInfo...Guido van Rossum1997-01-221-1/+1
* Added getbuildinfo.c to the project.Guido van Rossum1997-01-221-0/+12
* Fix splitext() to go up to the last dot, not the first.Guido van Rossum1997-01-221-3/+8
* Avoid traceback in selection_own_get() when no Tk widget owns theGuido van Rossum1997-01-212-6/+8
* Darn. Updated version number for configure.in.Guido van Rossum1997-01-211-1/+1
* Let --with-threads be an alias for --with-thread.Guido van Rossum1997-01-212-341/+589
* Kill all local variables on function return. This closes a giganticGuido van Rossum1997-01-211-0/+12
* Don't use static buffers internally for formatstring().Guido van Rossum1997-01-211-25/+26
* Only call sigcheck() at the ticker code if we don't have true signals.Guido van Rossum1997-01-211-2/+6
* Arrange for PyErr_CheckSignals() to be called via Py_AddPendingCall().Guido van Rossum1997-01-211-1/+3
* In the Unix version, arrange for sigcheck() to be called viaGuido van Rossum1997-01-211-0/+3
* Cleanup:Guido van Rossum1997-01-211-222/+10
* get build info from elsewhereGuido van Rossum1997-01-201-9/+2
* work build# into version stringGuido van Rossum1997-01-202-2/+39
* Bugfix: remove ref to fast before it's defined.Guido van Rossum1997-01-201-1/+1
* Changes for frame object speedup:Guido van Rossum1997-01-201-14/+2
* Changes that appear to give another 12% speedup.Guido van Rossum1997-01-201-87/+55
* New lay-out of frame object, for fewer mallocs.Guido van Rossum1997-01-201-9/+8
* Remove unused variable.Guido van Rossum1997-01-181-1/+0
* Intern the string "__complex__".Guido van Rossum1997-01-181-1/+1
* Intern all names and varnames in newcodeobject(), plus those stringGuido van Rossum1997-01-181-7/+22
* Intern the various string objects created to speed up lookups.Guido van Rossum1997-01-181-25/+25
* Intern the strings "__builtins__".Guido van Rossum1997-01-181-1/+1
* Intern the strings created in getattr() and setattr().Guido van Rossum1997-01-181-2/+2
* String interning.Guido van Rossum1997-01-183-32/+285
* Bump API version due to the various speedup hacks.Guido van Rossum1997-01-181-2/+4
* Two speedup hacks. Caching the hash saves recalculation of a string'sGuido van Rossum1997-01-181-3/+23