summaryrefslogtreecommitdiff
path: root/Include/ceval.h
Commit message (Expand)AuthorAgeFilesLines
* Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka2016-09-111-0/+2
* Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-081-0/+4
* Add the co_extra field and accompanying APIs to code objects.Brett Cannon2016-09-071-0/+4
* Implement the frame evaluation API aspect of PEP 523.Brett Cannon2016-09-051-0/+3
* Fix PyObject_Call() parameter namesVictor Stinner2016-08-191-1/+1
* Issue 25483: Add an opcode to make f-string formatting more robust.Eric V. Smith2015-11-031-0/+8
* sys.setrecursionlimit() now raises RecursionErrorVictor Stinner2015-10-131-3/+9
* Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-031-3/+3
* Added the const qualifier for char* argument of Py_EnterRecursiveCall().Serhiy Storchaka2015-06-211-1/+1
|\
| * Added the const qualifier for char* argument of Py_EnterRecursiveCall().Serhiy Storchaka2015-06-211-1/+1
* | Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapperYury Selivanov2015-06-021-1/+0
* | Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefullyYury Selivanov2015-06-021-1/+2
* | Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper privateYury Selivanov2015-06-011-2/+2
* | Fix warnings for PyEval_GetCoroutineWrapperYury Selivanov2015-05-111-1/+1
* | PEP 0492 -- Coroutines with async and await syntax. Issue #24017.Yury Selivanov2015-05-111-0/+2
|/
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-0/+8
* Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properlyAntoine Pitrou2010-09-131-0/+1
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-34/+34
* Merged revisions 79555 via svnmerge fromAntoine Pitrou2010-04-011-4/+0
* Merge in the new GIL.Antoine Pitrou2009-11-101-4/+4
* Issue #5392: when a very low recursion limit was set, the interpreter wouldAntoine Pitrou2009-03-131-5/+4
* Issue #3697: "Fatal Python error: Cannot recover from stack overflow"Antoine Pitrou2008-09-031-7/+43
* Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875.Georg Brandl2008-05-251-1/+1
* Bug #1595: Remove extra semicolon.Martin v. Löwis2008-02-121-1/+1
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-1/+12
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-141-1/+0
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-091-2/+0
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+1
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-4/+6
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-021-0/+1
* SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by NickTim Peters2004-10-111-0/+1
* Patch #966493: Cleanup generator/eval_frame exposure.Martin v. Löwis2004-06-271-1/+1
* Patch #957398: Add public API for Generator Object/Type.Martin v. Löwis2004-06-011-0/+1
* Deleting cyclic object comparison.Armin Rigo2003-10-281-0/+14
* As far as I can tell PyEval_GetOwner was removed in 1997 (when it wasMichael W. Hudson2003-02-201-1/+0
* - PyEval_GetFrame() is now declared to return a PyFrameObject *Guido van Rossum2003-02-191-1/+3
* Small function call optimization and special build option for call stats.Jeremy Hylton2003-02-051-0/+2
* replace thread state objects' ticker and checkinterval fields with twoSkip Montanaro2002-09-031-0/+4
* Excise DL_EXPORT from Include.Mark Hammond2002-08-121-30/+30
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-0/+3
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-161-1/+5
* Revise the interface to the profiling and tracing support for theFred Drake2001-06-271-0/+3
* If a code object is compiled with nested scopes, define the CO_NESTED flag.Jeremy Hylton2001-03-221-0/+1
* RET_SAVE references should be Py_BLOCK_THREADS referencesSkip Montanaro2000-09-151-2/+2
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Supply missing prototypes for new Py_{Get,Set}RecursionLimit; fixes compiler ...Tim Peters2000-09-011-0/+2
* The new PyEval_ReInitThreads wasn't declared in ceval.h; compiler wngs.Tim Peters2000-08-271-0/+1
* Use 'void' directly instead of the ANY #define, now that all code is ANSI C.Thomas Wouters2000-07-251-1/+1
* ANSIfications: fix empty arglists, and remove the checks forThomas Wouters2000-07-221-6/+0
* ANSI-fication and Py_PROTO extermination.Fred Drake2000-07-081-22/+22