summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Keep gcc -Wall happyGuido van Rossum1997-08-152-3/+2
* Use _beginthread() and _endthread() in favor of CreateThread() andGuido van Rossum1997-08-141-16/+8
* Added Jim Fulton's PyImport_Import(), which calls whateverGuido van Rossum1997-08-141-0/+78
* Use string interning and caching to get speedups on the mac (Jack).Guido van Rossum1997-08-121-1/+17
* Use strerror on the mac if using MSL (Jack).Guido van Rossum1997-08-121-6/+0
* Remove unised variableGuido van Rossum1997-08-071-1/+0
* Merge Py_Cleanup() into Py_Finalize(). Call the various small Fini()Guido van Rossum1997-08-051-36/+43
* New rules for deleting modules. Rather than having an elaborateGuido van Rossum1997-08-051-1/+29
* Renamed a local label that was accidentally grandly renamed toGuido van Rossum1997-08-051-3/+3
* The last of the mass checkins for separate (sub)interpreters.Guido van Rossum1997-08-027-218/+542
* Removed fatal errors from Py_Initmodule4() (and thus fromGuido van Rossum1997-08-021-12/+12
* Extend the "Don Beaudry hack" with "Guido's corollary" -- if the baseGuido van Rossum1997-07-311-10/+27
* Plugged a leak. (The same as the one plugged in compile.c -- forgotGuido van Rossum1997-07-261-0/+1
* Plug a leak in code_dealloc() (and reordered the deallocs to match theGuido van Rossum1997-07-251-3/+2
* Removed some variables that are used to exchange data between import.c andGuido van Rossum1997-07-213-14/+6
* frozenmain.c is now also in the library,Guido van Rossum1997-07-192-6/+2
* Oops -- this contains frozen bytecode, but it was Python 1.4 bytecode!Guido van Rossum1997-07-191-7/+7
* Moved PyEval_{Acquire,Release}Thread() to within the same #ifdefGuido van Rossum1997-07-191-21/+23
* Removed a bunch of extern declarations of functions that are nowGuido van Rossum1997-07-191-7/+0
* Make it return a _const_ char*.Guido van Rossum1997-07-193-5/+2
* New build procedure.Guido van Rossum1997-07-191-9/+9
* Tracking changes to Py_Main():Guido van Rossum1997-07-191-18/+4
* Moved some stuff here from main.c (part of a big restructuring - waitGuido van Rossum1997-07-191-1/+26
* Remove confusing usage comments at end.Guido van Rossum1997-07-191-28/+0
* PyEval_SaveThread() and PyEval_RestoreThread() now return/take aGuido van Rossum1997-07-181-6/+28
* Huge speedup by inlining some common integer operations:Guido van Rossum1997-07-171-5/+75
* Fix problem discovered by Greg McFarlane: when an imported moduleGuido van Rossum1997-07-101-0/+7
* Fix bug reported by Just: anonymous arguments used for tuples shouldGuido van Rossum1997-07-101-1/+3
* Add default case (standard conformance) to avoid piling upGuido van Rossum1997-06-021-4/+4
* Can't return 0 from void function...Guido van Rossum1997-05-231-1/+1
* PyObject_Compare can raise an exception now.Guido van Rossum1997-05-233-5/+23
* PyFile_WriteString now returns an error indicator instead of callingGuido van Rossum1997-05-222-16/+32
* Py_FlushLine and PyFile_WriteString now return error indicatorsGuido van Rossum1997-05-221-30/+41
* Py_FlushLine and PyFile_WriteString now return error indicatorsGuido van Rossum1997-05-221-12/+24
* DG/UX thread patches (Ross Andrus)Guido van Rossum1997-05-222-3/+12
* Set sys.executable to full path of python (from argv[0]).Guido van Rossum1997-05-221-0/+4
* Added a space in an error messageGuido van Rossum1997-05-221-1/+1
* Don't use function prototypes in function definition headers.Guido van Rossum1997-05-201-4/+8
* Indent the #error directives so a classic K&R cpp doesn't see them.Guido van Rossum1997-05-201-3/+3
* Plug leak of stack frame object in exception handling code.Guido van Rossum1997-05-201-9/+26
* Logic for enabling mac-specific signal handling fixed (Jack)Guido van Rossum1997-05-201-1/+1
* Use #ifdef in stead of #if (Jack)Guido van Rossum1997-05-201-1/+1
* Add pthred-std define for Linux.Guido van Rossum1997-05-151-0/+2
* One last rename glitch: import_modules -> _PyImport_Modules.Guido van Rossum1997-05-143-17/+17
* Support for various versions of the pthread draft.Guido van Rossum1997-05-131-12/+64
* (int) cast for strlen() to keep picky compilers happy.Guido van Rossum1997-05-131-1/+1
* Oops -- missed FloatingPointError in renaming.Guido van Rossum1997-05-091-2/+2
* Get rid of obsolete support for access statement.Guido van Rossum1997-05-091-67/+0
* Oops, missed some renamings.Guido van Rossum1997-05-073-8/+5
* Instead of importing graminit.h whenever one of the three grammar 'root'Guido van Rossum1997-05-075-18/+27