diff options
| author | Victor Stinner <vstinner@python.org> | 2020-02-07 11:22:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-07 11:22:54 +0100 |
| commit | 877ea88934a5164be4d9f15207694fad4173d87d (patch) | |
| tree | a145ecac05546d2bcb760179091886c0ad43979f /PC/python3.def | |
| parent | c65b320a95784d2b2133926921d67ac439259e9f (diff) | |
| download | cpython-git-877ea88934a5164be4d9f15207694fad4173d87d.tar.gz | |
bpo-38644: Add Py_EnterRecursiveCall() to python3.def (GH-18399)
Add Py_EnterRecursiveCall and Py_LeaveRecursiveCall functions to
python3.def.
Diffstat (limited to 'PC/python3.def')
| -rw-r--r-- | PC/python3.def | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/python3.def b/PC/python3.def index 4689b777a6..c7aed8789c 100644 --- a/PC/python3.def +++ b/PC/python3.def @@ -727,6 +727,7 @@ EXPORTS Py_DecodeLocale=python39.Py_DecodeLocale Py_EncodeLocale=python39.Py_EncodeLocale Py_EndInterpreter=python39.Py_EndInterpreter + Py_EnterRecursiveCall=python39.Py_EnterRecursiveCall Py_Exit=python39.Py_Exit Py_FatalError=python39.Py_FatalError Py_FileSystemDefaultEncodeErrors=python39.Py_FileSystemDefaultEncodeErrors DATA @@ -750,6 +751,7 @@ EXPORTS Py_Initialize=python39.Py_Initialize Py_InitializeEx=python39.Py_InitializeEx Py_IsInitialized=python39.Py_IsInitialized + Py_LeaveRecursiveCall=python39.Py_LeaveRecursiveCall Py_Main=python39.Py_Main Py_MakePendingCalls=python39.Py_MakePendingCalls Py_NewInterpreter=python39.Py_NewInterpreter |
