summaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/Include/cpython/complexobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/tools/python3/Include/cpython/complexobject.h')
-rw-r--r--contrib/tools/python3/Include/cpython/complexobject.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/contrib/tools/python3/Include/cpython/complexobject.h b/contrib/tools/python3/Include/cpython/complexobject.h
index b7d7283ae88..fbdc6a91fe8 100644
--- a/contrib/tools/python3/Include/cpython/complexobject.h
+++ b/contrib/tools/python3/Include/cpython/complexobject.h
@@ -7,8 +7,7 @@ typedef struct {
double imag;
} Py_complex;
-/* Operations on complex numbers from complexmodule.c */
-
+// Operations on complex numbers.
PyAPI_FUNC(Py_complex) _Py_c_sum(Py_complex, Py_complex);
PyAPI_FUNC(Py_complex) _Py_c_diff(Py_complex, Py_complex);
PyAPI_FUNC(Py_complex) _Py_c_neg(Py_complex);
@@ -17,6 +16,7 @@ PyAPI_FUNC(Py_complex) _Py_c_quot(Py_complex, Py_complex);
PyAPI_FUNC(Py_complex) _Py_c_pow(Py_complex, Py_complex);
PyAPI_FUNC(double) _Py_c_abs(Py_complex);
+
/* Complex object interface */
/*
@@ -31,14 +31,3 @@ typedef struct {
PyAPI_FUNC(PyObject *) PyComplex_FromCComplex(Py_complex);
PyAPI_FUNC(Py_complex) PyComplex_AsCComplex(PyObject *op);
-
-#ifdef Py_BUILD_CORE
-/* Format the object based on the format_spec, as defined in PEP 3101
- (Advanced String Formatting). */
-extern int _PyComplex_FormatAdvancedWriter(
- _PyUnicodeWriter *writer,
- PyObject *obj,
- PyObject *format_spec,
- Py_ssize_t start,
- Py_ssize_t end);
-#endif // Py_BUILD_CORE