summaryrefslogtreecommitdiffstats
path: root/Include/pythonrun.h
Commit message (Expand)AuthorAgeFilesLines
* Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also...Collin Winter2007-03-211-0/+4
* SF patch #1669633, add methods for bytes from Pete Shinners.Neal Norwitz2007-02-271-0/+2
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-3/+2
* Reconst parameters that lost their const in the AST merge.Martin v. Löwis2006-03-011-2/+2
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-281-1/+2
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-1/+1
* Generate code to recursively copy an AST intoMartin v. Löwis2006-02-261-0/+1
* Per discussion on python-dev, remove CO_GENERATOR_ALLOWED. Leave comment abo...Neal Norwitz2006-02-251-1/+1
* Drop sys.build_number. Add sys.subversion.Martin v. Löwis2006-01-051-1/+3
* Expose Subversion revision number (calculated via "svnversion .") to Python.Barry Warsaw2005-12-181-0/+1
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-2/+4
* Correct error to PyRun_SimpleString macro introduced in AST merge.Mark Hammond2005-10-231-1/+1
* Merge ast-branch to headJeremy Hylton2005-10-201-31/+41
* * Improve code for the empty frozenset singleton:Raymond Hettinger2005-08-011-0/+1
* This is my patch:Michael W. Hudson2005-05-271-0/+1
* Finalize the freelist of list objects.Raymond Hettinger2004-10-071-0/+1
* Patch #900727: Add Py_InitializeEx to allow embedding without signals.Martin v. Löwis2004-08-191-0/+1
* Patch #1006003: Cygwin standard module build problemsJason Tishler2004-08-091-0/+1
* - Finally fixed the bug in compile() and exec where a string endingGuido van Rossum2003-02-131-0/+1
* patch #683515: "Add unicode support to compile(), eval() and exec"Just van Rossum2003-02-101-0/+1
* Move _PyInt_Init() into pythonrun.h, since all the other _Init()Neal Norwitz2003-01-011-0/+1
* Since the *_Init() are private, prefix with _, suggested by SkipNeal Norwitz2002-12-311-1/+1
* SF #561244, Micro optimizationsNeal Norwitz2002-12-301-0/+1
* PEP 302 + zipimport:Just van Rossum2002-12-301-0/+1
* Constify filenames and scripts. Fixes #651362.Martin v. Löwis2002-12-111-32/+32
* Patch #512981: Update readline input stream on sys.stdin/out change.Martin v. Löwis2002-10-261-2/+2
* Correct PyAPI_FUNC to PyAPI_DATA - sorry Jack.Mark Hammond2002-08-121-2/+2
* Excise DL_EXPORT from Include.Mark Hammond2002-08-121-57/+57
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-0/+3
* Excise DL_IMPORT/EXPORT from object.h, and related files. This patchMark Hammond2002-07-291-20/+20
* Fix SF Bug 564931: compile() traceback must include filename.Thomas Heller2002-07-091-0/+4
* Removed more hair in support of future-generator stmts.Tim Peters2002-04-121-2/+2
* Add warning mode for classic division, almost exactly as specified inGuido van Rossum2001-08-311-0/+1
* ceval, PyEval_MergeCompilerFlags: wasn't merging in theTim Peters2001-08-171-0/+2
* Refactor future feature handlingJeremy Hylton2001-08-101-7/+2
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-081-0/+1
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-2/+2
* Ugly. A pile of new xxxFlags() functions, to communicate to the parserTim Peters2001-07-161-0/+3
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-161-1/+6
* Add sys.excepthook.Ka-Ping Yee2001-03-231-0/+1
* Extend support for from __future__ import nested_scopesJeremy Hylton2001-03-221-0/+13
* Useful future statement support for the interactive interpreterJeremy Hylton2001-03-011-0/+5
* Move a bunch of definitions that were internal to compile.c toJeremy Hylton2001-02-021-0/+1
* Use suggested workaround for PyOS_CheckStack causing failure of test_[s]re.pyTrent Mick2000-10-111-1/+1
* Add typedef PyOS_sighandler_t and prototypes for PyOS_getsig() andGuido van Rossum2000-09-161-0/+6
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(),Guido van Rossum2000-08-271-0/+4
* implements PyOS_CheckStack for Windows and MSVC. this fixes aFredrik Lundh2000-08-271-1/+13
* Added a prototype for PyOS_CheckStack (within #ifdef USE_STACKCHECK).Jack Jansen2000-08-071-0/+3
* ANSI-fication and Py_PROTO extermination.Fred Drake2000-07-091-56/+56