summaryrefslogtreecommitdiffstats
path: root/Include/cpython
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2023-07-20 16:46:04 (GMT)
committerGitHub <noreply@github.com>2023-07-20 16:46:04 (GMT)
commit9c81fc2dbee3ac8a2f30ad24b0876d80628a94ac (patch)
tree74642722ed13a213cfe9b33701b72fb621c2886d /Include/cpython
parent214a25dd81dfe5ee0ab843cf665da2a7473a08db (diff)
downloadcpython-9c81fc2dbee3ac8a2f30ad24b0876d80628a94ac.zip
cpython-9c81fc2dbee3ac8a2f30ad24b0876d80628a94ac.tar.gz
cpython-9c81fc2dbee3ac8a2f30ad24b0876d80628a94ac.tar.bz2
gh-105481: do not auto-generate pycore_intrinsics.h (#106913)
Diffstat (limited to 'Include/cpython')
-rw-r--r--Include/cpython/compile.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/cpython/compile.h b/Include/cpython/compile.h
index fd52697..e6cd39a 100644
--- a/Include/cpython/compile.h
+++ b/Include/cpython/compile.h
@@ -77,3 +77,5 @@ PyAPI_FUNC(int) PyUnstable_OpcodeHasFree(int opcode);
PyAPI_FUNC(int) PyUnstable_OpcodeHasLocal(int opcode);
PyAPI_FUNC(int) PyUnstable_OpcodeHasExc(int opcode);
+PyAPI_FUNC(PyObject*) _PyUnstable_GetUnaryIntrinsicName(int index);
+PyAPI_FUNC(PyObject*) _PyUnstable_GetBinaryIntrinsicName(int index);