diff options
author | Guido van Rossum <guido@python.org> | 1996-01-12 00:50:33 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-01-12 00:50:33 (GMT) |
commit | b17d5dea4872f73b2e48f8236a60a2c6e74e7067 (patch) | |
tree | 21021baac26dc8347395a0885c4999911307d789 /Include | |
parent | e0dbd590ea76933c83dc67092bca32a43ef7d68c (diff) | |
download | cpython-b17d5dea4872f73b2e48f8236a60a2c6e74e7067.zip cpython-b17d5dea4872f73b2e48f8236a60a2c6e74e7067.tar.gz cpython-b17d5dea4872f73b2e48f8236a60a2c6e74e7067.tar.bz2 |
changes for complex numbers
Diffstat (limited to 'Include')
-rw-r--r-- | Include/rename2.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Include/rename2.h b/Include/rename2.h index 1f01f9b..eeee9be 100644 --- a/Include/rename2.h +++ b/Include/rename2.h @@ -92,6 +92,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define KeyboardInterrupt PyExc_KeyboardInterrupt #define SystemExit PyExc_SystemExit #define Floattype PyFloat_Type +#define Complextype PyComplex_Type #define Inttype PyInt_Type #define Longtype PyLong_Type #define Notype PyNothing_Type @@ -112,6 +113,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define Frametype PyFrame_Type #define Rangetype PyRange_Type #define floatobject PyFloatObject +#define complexobject PyComplexObject #define intobject PyIntObject #define longobject PyLongObject #define noobject PyNothingObject @@ -150,6 +152,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define END_SAVE Py_END_ALLOW_THREADS #define callable PyCallable_Check #define is_floatobject PyFloat_Check +#define is_complexobject PyComplex_Check #define is_intobject PyInt_Check #define is_longobject PyLong_Check #define is_stringobject PyString_Check @@ -193,6 +196,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define getfloatvalue PyFloat_AsDouble #define GETFLOATVALUE PyFloat_AS_DOUBLE #define newfloatobject PyFloat_FromDouble +#define newcomplexobject PyComplex_FromCComplex #define getintvalue PyInt_AsLong #define GETINTVALUE PyInt_AS_LONG #define getmaxint PyInt_GetMax |