mirror of
https://github.com/python/cpython.git
synced 2025-10-06 15:11:58 +00:00
gh-107149: Rename _PyUnstable_GetUnaryIntrinsicName() function (#108441)
* Rename _PyUnstable_GetUnaryIntrinsicName() to PyUnstable_GetUnaryIntrinsicName() * Rename _PyUnstable_GetBinaryIntrinsicName() to PyUnstable_GetBinaryIntrinsicName().
This commit is contained in:
parent
0bd2ba553d
commit
0b6a4cb0df
3 changed files with 6 additions and 6 deletions
|
@ -269,7 +269,7 @@ _PyIntrinsics_BinaryFunctions[] = {
|
|||
#undef INTRINSIC_FUNC_ENTRY
|
||||
|
||||
PyObject*
|
||||
_PyUnstable_GetUnaryIntrinsicName(int index)
|
||||
PyUnstable_GetUnaryIntrinsicName(int index)
|
||||
{
|
||||
if (index < 0 || index > MAX_INTRINSIC_1) {
|
||||
return NULL;
|
||||
|
@ -278,7 +278,7 @@ _PyUnstable_GetUnaryIntrinsicName(int index)
|
|||
}
|
||||
|
||||
PyObject*
|
||||
_PyUnstable_GetBinaryIntrinsicName(int index)
|
||||
PyUnstable_GetBinaryIntrinsicName(int index)
|
||||
{
|
||||
if (index < 0 || index > MAX_INTRINSIC_2) {
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue