summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Tweaks to keep the Microsoft compiler quier.Guido van Rossum1997-04-094-8/+16
* Support for alternative string quotes (a"xx", b"xx", c"xx", ...).Guido van Rossum1997-04-061-3/+6
* Allow passing a .pyo file.Guido van Rossum1997-04-021-5/+8
* Added assert statement.Guido van Rossum1997-04-021-0/+45
* Added assert grammar.Guido van Rossum1997-04-021-494/+522
* 1. Add string conversions to int(), long(), float(). (Not to complex()!)Guido van Rossum1997-03-311-7/+127
* New form of PyFPE_END_PROTECT macro.Guido van Rossum1997-03-143-6/+6
* Fix dumb bug calling parsestrplus with wrong node as argument.Guido van Rossum1997-03-111-1/+3
* Define __debug__ as 0 if -O is given, 1 otherwise. Also test forGuido van Rossum1997-03-111-0/+4
* Added support for ``if __debug__:'' -- if -O is given, this form isGuido van Rossum1997-03-111-2/+90
* When -O is given, use ".pyo" instead of ".pyc".Guido van Rossum1997-03-111-1/+9
* Clarify error message for unexpected keyword parameter.Guido van Rossum1997-03-101-1/+4
* Greatly renamed. Not a very thorough job -- I'm going to restructureGuido van Rossum1997-03-051-210/+211
* Add global Py_OptimizeFlag. SET_LINENO is omitted again unless this isGuido van Rossum1997-03-031-4/+7
* Changes for Lee Busby's SIGFPE patch set.Guido van Rossum1997-02-145-4/+38
* Keep gcc -Wall happy.Guido van Rossum1997-02-141-1/+1
* Oops, remove an unused variable from PyErr_Format().Guido van Rossum1997-02-141-1/+0
* Added new global flag variable Py_InteractiveFlag and new functionGuido van Rossum1997-02-141-1/+22
* Added convenience function PyErr_Format(exception, formatstring, ...) -> NULL.Guido van Rossum1997-02-141-0/+27
* *Don't* kill all local variables on function exit. This will be doneGuido van Rossum1997-02-141-12/+0
* Added intern() function.Guido van Rossum1997-02-141-0/+14
* Two small changes:Guido van Rossum1997-01-271-5/+3
* 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
* 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
* Kill all local variables on function return. This closes a giganticGuido van Rossum1997-01-211-0/+12
* Only call sigcheck() at the ticker code if we don't have true signals.Guido van Rossum1997-01-211-2/+6
* Cleanup:Guido van Rossum1997-01-211-222/+10
* get build info from elsewhereGuido van Rossum1997-01-201-9/+2
* Changes for frame object speedup:Guido van Rossum1997-01-201-14/+2
* 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
* Add "if (x != NULL) continue;" (or similar for err==0) before theGuido van Rossum1997-01-181-18/+60
* Marshal the new stacksize item in code objects.Guido van Rossum1997-01-171-1/+3
* Working semaphore implementation by Sjoerd.Guido van Rossum1997-01-171-3/+64
* New MAGIC number (code objects have one more item when marshalled).Guido van Rossum1997-01-171-1/+2
* Use the stack size from the code object and the CO_MAXBLOCKS constantGuido van Rossum1997-01-171-2/+10
* Add co_stacksize field to codeobject structure, and stacksize argumentGuido van Rossum1997-01-171-62/+253
* Check for duplicate keyword arguments at compile time.Guido van Rossum1997-01-061-12/+20
* Make builtin_module_names a tuple instead of a list.Guido van Rossum1997-01-061-0/+5
* Rename DEBUG macro to Py_DEBUGGuido van Rossum1996-12-303-9/+9
* Moved the raise logic out of the main interpreter loop to a separate function.Guido van Rossum1996-12-101-60/+127
* Better way to handle 64-bit ints, keeping gcc -Wall happy.Guido van Rossum1996-12-101-30/+18
* Add unistd.h to make gcc -Wall happy.Guido van Rossum1996-12-101-0/+4