summaryrefslogtreecommitdiff
path: root/Include/pythonrun.h
Commit message (Expand)AuthorAgeFilesLines
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-21/+21
* Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.Mark Dickinson2009-03-201-0/+1
* Restore support for Microsoft VC6 compiler.Amaury Forgeot d'Arc2008-06-131-1/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-1/+1
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* First step of the C API rename:Christian Heimes2008-05-261-2/+2
* Patch #2477: Added from __future__ import unicode_literalsChristian Heimes2008-03-261-1/+2
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-261-0/+2
* Backport of the print function, using a __future__ import.Eric Smith2008-03-181-1/+1
* Deallocate content of the dict free list on interpreter shutdownChristian Heimes2008-02-081-0/+1
* Don't abbreviate ABS, use long name ABSOLUTE.Neal Norwitz2006-04-031-1/+1
* 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