summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-31 15:28:04 (GMT)
committerPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-31 15:28:04 (GMT)
commit7e018909862a3fe6c571bbb7143f4ffb18ae834c (patch)
treeed39d496c16b58895a2620f43061bc9013c1deca /Modules
parent885082ca67d679a0d95218cb38babbcb10b92c3f (diff)
downloadcpython-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 'Modules')
-rw-r--r--Modules/_tkinter.c7
-rw-r--r--Modules/audioop.c2
-rw-r--r--Modules/cPickle.c1
-rw-r--r--Modules/cmathmodule.c2
-rw-r--r--Modules/mathmodule.c2
-rw-r--r--Modules/posixmodule.c2
-rw-r--r--Modules/pypcre.c1
-rw-r--r--Modules/resource.c1
-rw-r--r--Modules/rotormodule.c1
-rw-r--r--Modules/selectmodule.c1
-rw-r--r--Modules/socketmodule.c1
-rw-r--r--Modules/structmodule.c1
-rw-r--r--Modules/timemodule.c10
13 files changed, 0 insertions, 32 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index 1569529..9601f06 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -49,11 +49,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#ifdef macintosh
#define MAC_TCL
-#include "myselect.h"
-#endif
-
-#ifdef PYOS_OS2
-#include "myselect.h"
#endif
#include <tcl.h>
@@ -255,8 +250,6 @@ Tkinter_Error(PyObject *v)
#ifdef WITH_THREAD
#ifndef MS_WINDOWS
-#include "mytime.h"
-#include "myselect.h"
/* Millisecond sleep() for Unix platforms. */
diff --git a/Modules/audioop.c b/Modules/audioop.c
index 08e8fd4..8d25189 100644
--- a/Modules/audioop.c
+++ b/Modules/audioop.c
@@ -31,8 +31,6 @@ typedef unsigned long Py_UInt32;
#endif
#endif
-#include "mymath.h"
-
/* Code shamelessly stolen from sox,
** (c) Craig Reese, Joe Campbell and Jeff Poskanzer 1989 */
diff --git a/Modules/cPickle.c b/Modules/cPickle.c
index a7b275d..5a136b9 100644
--- a/Modules/cPickle.c
+++ b/Modules/cPickle.c
@@ -54,7 +54,6 @@ static char cPickle_module_documentation[] =
#include "Python.h"
#include "cStringIO.h"
-#include "mymath.h"
#ifndef Py_eval_input
#include <graminit.h>
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c
index 3c350bf..9781983 100644
--- a/Modules/cmathmodule.c
+++ b/Modules/cmathmodule.c
@@ -4,8 +4,6 @@
#include "Python.h"
-#include "mymath.h"
-
#ifdef i860
/* Cray APP has bogus definition of HUGE_VAL in <math.h> */
#undef HUGE_VAL
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index 2aa0071..f51b63a 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -12,8 +12,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#include "Python.h"
-#include "mymath.h"
-
#ifndef _MSC_VER
#ifndef __STDC__
extern double fmod (double, double);
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index fe63689..e346124 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -45,8 +45,6 @@ corresponding Unix manual entries for more information on calls.";
#include <signal.h>
#endif
-#include "mytime.h" /* For clock_t on some systems */
-
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif /* HAVE_FCNTL_H */
diff --git a/Modules/pypcre.c b/Modules/pypcre.c
index 18b319b..11c7ce9 100644
--- a/Modules/pypcre.c
+++ b/Modules/pypcre.c
@@ -47,7 +47,6 @@ restrictions:
#define FOR_PYTHON
#include "pcre-int.h"
#include "Python.h"
-#include "mymalloc.h"
#include <ctype.h>
#include "graminit.h"
diff --git a/Modules/resource.c b/Modules/resource.c
index 76fd731..cca6d82 100644
--- a/Modules/resource.c
+++ b/Modules/resource.c
@@ -9,7 +9,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
******************************************************************/
#include "Python.h"
-#include "mytime.h" /* needed for SunOS4.1 */
#include <sys/resource.h>
#include <sys/time.h>
#include <unistd.h>
diff --git a/Modules/rotormodule.c b/Modules/rotormodule.c
index 393e73a..9f58ff2 100644
--- a/Modules/rotormodule.c
+++ b/Modules/rotormodule.c
@@ -56,7 +56,6 @@ NOTE: you MUST use the SAME key in rotor.newrotor()
/* Rotor objects */
#include "Python.h"
-#include "mymath.h"
#ifndef TRUE
#define TRUE 1
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index 2860f37..37bc514 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -46,7 +46,6 @@ extern void bzero(void *, int);
#include <net/socket.h>
#define SOCKET int
#else
-#include "myselect.h" /* Also includes mytime.h */
#define SOCKET int
#endif
#endif
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index f146e8f..56378ac 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -126,7 +126,6 @@ Socket methods:
#endif
#include <sys/types.h>
-#include "mytime.h"
#include <signal.h>
#ifndef MS_WINDOWS
diff --git a/Modules/structmodule.c b/Modules/structmodule.c
index 1275955..ff10b18 100644
--- a/Modules/structmodule.c
+++ b/Modules/structmodule.c
@@ -39,7 +39,6 @@ Whitespace between formats is ignored.\n\
The variable struct.error is an exception raised on errors.";
#include "Python.h"
-#include "mymath.h"
#include <limits.h>
#include <ctype.h>
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index 4d2089c..db8e163 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -14,10 +14,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#include <ctype.h>
-#ifdef HAVE_SELECT
-#include "mymath.h"
-#endif
-
#ifdef macintosh
#include <time.h>
#include <OSUtils.h>
@@ -40,12 +36,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#include <unistd.h>
#endif
-#if defined(HAVE_SELECT) && !defined(__BEOS__)
-#include "myselect.h"
-#else
-#include "mytime.h"
-#endif
-
#ifdef HAVE_FTIME
#include <sys/timeb.h>
#if !defined(MS_WINDOWS) && !defined(PYOS_OS2)