diff options
author | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-31 15:28:04 (GMT) |
---|---|---|
committer | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-31 15:28:04 (GMT) |
commit | 7e018909862a3fe6c571bbb7143f4ffb18ae834c (patch) | |
tree | ed39d496c16b58895a2620f43061bc9013c1deca /Objects | |
parent | 885082ca67d679a0d95218cb38babbcb10b92c3f (diff) | |
download | cpython-7e018909862a3fe6c571bbb7143f4ffb18ae834c.zip cpython-7e018909862a3fe6c571bbb7143f4ffb18ae834c.tar.gz cpython-7e018909862a3fe6c571bbb7143f4ffb18ae834c.tar.bz2 |
merge Include/my*.h into Include/pyport.h
marked my*.h as obsolete
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/complexobject.c | 1 | ||||
-rw-r--r-- | Objects/floatobject.c | 1 | ||||
-rw-r--r-- | Objects/longobject.c | 1 | ||||
-rw-r--r-- | Objects/object.c | 2 | ||||
-rw-r--r-- | Objects/stringobject.c | 1 | ||||
-rw-r--r-- | Objects/unicodeobject.c | 1 |
6 files changed, 0 insertions, 7 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index eaccfab..e8916d5 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -17,7 +17,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #ifndef WITHOUT_COMPLEX #include "Python.h" -#include "mymath.h" #ifdef HAVE_LIMITS_H #include <limits.h> diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 7a444ad..4bed0dc 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -16,7 +16,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #include "Python.h" #include <ctype.h> -#include "mymath.h" #ifdef i860 /* Cray APP has bogus definition of HUGE_VAL in <math.h> */ diff --git a/Objects/longobject.c b/Objects/longobject.c index df3c6a5..37da244 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -14,7 +14,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #include "Python.h" #include "longintrepr.h" -#include "mymath.h" #include <assert.h> #include <ctype.h> diff --git a/Objects/object.c b/Objects/object.c index 6fe05f1..72c3013 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -16,8 +16,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #include "macglue.h" #endif -#include "mymath.h" - /* just for trashcan: */ #include "compile.h" #include "frameobject.h" diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 80b9def..6d25ddb 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -12,7 +12,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #include "Python.h" -#include "mymath.h" #include <ctype.h> #ifdef COUNT_ALLOCS diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 359a987..7a3eb22 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -64,7 +64,6 @@ Unicode Integration Proposal (see file Misc/unicode.txt). #include "Python.h" -#include "mymath.h" #include "unicodeobject.h" #include "ucnhash.h" |