summaryrefslogtreecommitdiffstats
path: root/Python/ceval_macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ceval_macros.h')
-rw-r--r--Python/ceval_macros.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/Python/ceval_macros.h b/Python/ceval_macros.h
index 6ad4195..9674a78 100644
--- a/Python/ceval_macros.h
+++ b/Python/ceval_macros.h
@@ -352,13 +352,6 @@ do { \
} \
} while (0);
-typedef PyObject *(*convertion_func_ptr)(PyObject *);
-
-static const convertion_func_ptr CONVERSION_FUNCTIONS[4] = {
- [FVC_STR] = PyObject_Str,
- [FVC_REPR] = PyObject_Repr,
- [FVC_ASCII] = PyObject_ASCII
-};
// GH-89279: Force inlining by using a macro.
#if defined(_MSC_VER) && SIZEOF_INT == 4