summaryrefslogtreecommitdiffstats
path: root/Include/ceval.h
Commit message (Expand)AuthorAgeFilesLines
* gh-74929: Implement PEP 667 (GH-115153)Tian Gao2024-05-041-0/+4
* gh-117929: Restore removed PyEval_InitThreads() function (#117931)Victor Stinner2024-04-171-0/+2
* gh-105182: Remove PyEval_AcquireLock() and PyEval_InitThreads() (#105183)Victor Stinner2023-06-011-8/+0
* gh-105107: Remove PyEval_CallFunction() function (#105108)Victor Stinner2023-05-311-21/+0
* gh-87347: Add parenthesis around macro arguments (#93915)Victor Stinner2022-06-201-1/+1
* gh-91320: Fix more old-style cast warnings in C++ (#93285)Victor Stinner2022-06-021-1/+1
* bpo-45434: Remove Include/eval.h header file (GH-28973)Victor Stinner2021-10-151-1/+11
* bpo-45434: Remove useless space in includes (GH-28963)Victor Stinner2021-10-141-1/+1
* bpo-41936. Remove macros Py_ALLOW_RECURSION/Py_END_ALLOW_RECURSION (GH-22552)Serhiy Storchaka2020-10-051-8/+0
* bpo-41165: Deprecate PyEval_ReleaseLock() (GH-21309)Inada Naoki2020-07-061-1/+5
* bpo-40421: Add pyframe.h header file (GH-19755)Victor Stinner2020-04-281-5/+3
* bpo-39877: Deprecate PyEval_InitThreads() (GH-18892)Victor Stinner2020-03-101-2/+2
* bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883)Victor Stinner2020-03-091-3/+0
* bpo-38644: Cleanup ceval.h (GH-17185)Victor Stinner2019-11-161-36/+0
* bpo-38644: Add Py_EnterRecursiveCall() to the limited API (GH-17046)Victor Stinner2019-11-041-35/+8
* bpo-29548: deprecate PyEval_Call* functions (GH-14804)Jeroen Demeyer2019-07-241-10/+10
* bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060)Victor Stinner2019-06-131-1/+0
* bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980)Zackery Spytz2019-05-281-2/+2
* bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-1...Matthias Bussonnier2019-05-281-2/+0
* bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241)Victor Stinner2019-05-131-1/+0
* bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934)Victor Stinner2019-05-101-5/+0
* Revert "bpo-36356: Destroy the GIL at exit (GH-12453)" (GH613006)Victor Stinner2019-04-291-0/+3
* bpo-36356: Destroy the GIL at exit (GH-12453)Victor Stinner2019-04-291-3/+0
* bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()...Eric Snow2019-04-121-1/+1
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12...Eric Snow2019-04-121-1/+1
* Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...Victor Stinner2019-03-041-1/+1
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11...Eric Snow2019-02-241-1/+1
* bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...Serhiy Storchaka2018-12-111-1/+3
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-211-0/+2
* bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098)pdox2017-10-261-9/+7
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-081-0/+5
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-11/+0
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-061-6/+1
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-061-1/+6
* bpo-30703: Improve signal delivery (#2415)Antoine Pitrou2017-06-281-0/+1
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-161-2/+2
* bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...Serhiy Storchaka2017-03-301-1/+1
* bpo-29748: Added the slice index converter in Argument Clinic. (#549)Serhiy Storchaka2017-03-191-0/+1
* bpo-29548: Recommend PyObject_Call APIs over PyEval_Call APIs. (GH-75)INADA Naoki2017-03-141-0/+6
* Uniformize argument names of "call" functionsVictor Stinner2016-12-061-5/+7
* Backed out changeset 7efddbf1aa70Victor Stinner2016-11-301-2/+2
* Uniformize argument names of "call" functionsVictor Stinner2016-11-291-2/+2
* Remove CALL_PROFILE special buildVictor Stinner2016-11-281-1/+0
* Issue #19569: Compiler warnings are now emitted if use most of deprecatedSerhiy Storchaka2016-11-201-2/+2
* 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-091-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