/opt/alt/python37/include/python3.7m
/* Complex number structure */ #ifndef Py_COMPLEXOBJECT_H #define Py_COMPLEXOBJECT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API typedef struct { double real; double imag; } Py_complex; /* Operations on complex numbers from complexmodule.c */ 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); PyAPI_FUNC(Py_complex) _Py_c_prod(Py_complex, Py_complex); 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); #endif /* Complex object interface */ /* PyComplexObject represents a complex number with double-precision real and imaginary parts. */ #ifndef Py_LIMITED_API typedef struct { PyObject_HEAD Py_complex cval; } PyComplexObject; #endif PyAPI_DATA(PyTypeObject) PyComplex_Type; #define PyComplex_Check(op) PyObject_TypeCheck(op, &PyComplex_Type) #define PyComplex_CheckExact(op) (Py_TYPE(op) == &PyComplex_Type) #ifndef Py_LIMITED_API PyAPI_FUNC(PyObject *) PyComplex_FromCComplex(Py_complex); #endif PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag); PyAPI_FUNC(double) PyComplex_RealAsDouble(PyObject *op); PyAPI_FUNC(double) PyComplex_ImagAsDouble(PyObject *op); #ifndef Py_LIMITED_API PyAPI_FUNC(Py_complex) PyComplex_AsCComplex(PyObject *op); #endif /* Format the object based on the format_spec, as defined in PEP 3101 (Advanced String Formatting). */ #ifndef Py_LIMITED_API PyAPI_FUNC(int) _PyComplex_FormatAdvancedWriter( _PyUnicodeWriter *writer, PyObject *obj, PyObject *format_spec, Py_ssize_t start, Py_ssize_t end); #endif #ifdef __cplusplus } #endif #endif /* !Py_COMPLEXOBJECT_H */
.
Edit
..
Edit
Python-ast.h
Edit
Python.h
Edit
abstract.h
Edit
accu.h
Edit
asdl.h
Edit
ast.h
Edit
bitset.h
Edit
bltinmodule.h
Edit
boolobject.h
Edit
bytearrayobject.h
Edit
bytes_methods.h
Edit
bytesobject.h
Edit
cellobject.h
Edit
ceval.h
Edit
classobject.h
Edit
code.h
Edit
codecs.h
Edit
compile.h
Edit
complexobject.h
Edit
context.h
Edit
datetime.h
Edit
descrobject.h
Edit
dictobject.h
Edit
dtoa.h
Edit
dynamic_annotations.h
Edit
enumobject.h
Edit
errcode.h
Edit
eval.h
Edit
fileobject.h
Edit
fileutils.h
Edit
floatobject.h
Edit
frameobject.h
Edit
funcobject.h
Edit
genobject.h
Edit
graminit.h
Edit
grammar.h
Edit
import.h
Edit
internal
Edit
intrcheck.h
Edit
iterobject.h
Edit
listobject.h
Edit
longintrepr.h
Edit
longobject.h
Edit
marshal.h
Edit
memoryobject.h
Edit
metagrammar.h
Edit
methodobject.h
Edit
modsupport.h
Edit
moduleobject.h
Edit
namespaceobject.h
Edit
node.h
Edit
object.h
Edit
objimpl.h
Edit
odictobject.h
Edit
opcode.h
Edit
osdefs.h
Edit
osmodule.h
Edit
parsetok.h
Edit
patchlevel.h
Edit
pgen.h
Edit
pgenheaders.h
Edit
py_curses.h
Edit
pyarena.h
Edit
pyatomic.h
Edit
pycapsule.h
Edit
pyconfig-64.h
Edit
pyconfig.h
Edit
pyctype.h
Edit
pydebug.h
Edit
pydtrace.h
Edit
pyerrors.h
Edit
pyexpat.h
Edit
pyfpe.h
Edit
pyhash.h
Edit
pylifecycle.h
Edit
pymacconfig.h
Edit
pymacro.h
Edit
pymath.h
Edit
pymem.h
Edit
pyport.h
Edit
pystate.h
Edit
pystrcmp.h
Edit
pystrhex.h
Edit
pystrtod.h
Edit
pythonrun.h
Edit
pythread.h
Edit
pytime.h
Edit
rangeobject.h
Edit
setobject.h
Edit
sliceobject.h
Edit
structmember.h
Edit
structseq.h
Edit
symtable.h
Edit
sysmodule.h
Edit
token.h
Edit
traceback.h
Edit
tupleobject.h
Edit
typeslots.h
Edit
ucnhash.h
Edit
unicodeobject.h
Edit
warnings.h
Edit
weakrefobject.h
Edit