File tree 3 files changed +6
-6
lines changed 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -78,5 +78,5 @@ PyAPI_FUNC(int) PyUnstable_OpcodeHasFree(int opcode);
78
78
PyAPI_FUNC (int ) PyUnstable_OpcodeHasLocal (int opcode );
79
79
PyAPI_FUNC (int ) PyUnstable_OpcodeHasExc (int opcode );
80
80
81
- PyAPI_FUNC (PyObject * ) _PyUnstable_GetUnaryIntrinsicName (int index );
82
- PyAPI_FUNC (PyObject * ) _PyUnstable_GetBinaryIntrinsicName (int index );
81
+ PyAPI_FUNC (PyObject * ) PyUnstable_GetUnaryIntrinsicName (int index );
82
+ PyAPI_FUNC (PyObject * ) PyUnstable_GetBinaryIntrinsicName (int index );
Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ _opcode_get_intrinsic1_descs_impl(PyObject *module)
310
310
return NULL ;
311
311
}
312
312
for (int i = 0 ; i <= MAX_INTRINSIC_1 ; i ++ ) {
313
- PyObject * name = _PyUnstable_GetUnaryIntrinsicName (i );
313
+ PyObject * name = PyUnstable_GetUnaryIntrinsicName (i );
314
314
if (name == NULL ) {
315
315
Py_DECREF (list );
316
316
return NULL ;
@@ -337,7 +337,7 @@ _opcode_get_intrinsic2_descs_impl(PyObject *module)
337
337
return NULL ;
338
338
}
339
339
for (int i = 0 ; i <= MAX_INTRINSIC_2 ; i ++ ) {
340
- PyObject * name = _PyUnstable_GetBinaryIntrinsicName (i );
340
+ PyObject * name = PyUnstable_GetBinaryIntrinsicName (i );
341
341
if (name == NULL ) {
342
342
Py_DECREF (list );
343
343
return NULL ;
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ _PyIntrinsics_BinaryFunctions[] = {
269
269
#undef INTRINSIC_FUNC_ENTRY
270
270
271
271
PyObject *
272
- _PyUnstable_GetUnaryIntrinsicName (int index )
272
+ PyUnstable_GetUnaryIntrinsicName (int index )
273
273
{
274
274
if (index < 0 || index > MAX_INTRINSIC_1 ) {
275
275
return NULL ;
@@ -278,7 +278,7 @@ _PyUnstable_GetUnaryIntrinsicName(int index)
278
278
}
279
279
280
280
PyObject *
281
- _PyUnstable_GetBinaryIntrinsicName (int index )
281
+ PyUnstable_GetBinaryIntrinsicName (int index )
282
282
{
283
283
if (index < 0 || index > MAX_INTRINSIC_2 ) {
284
284
return NULL ;
You can’t perform that action at this time.
0 commit comments