[Python-checkins] CVS: python/dist/src/Modules _tkinter.c,1.109,1.110 audioop.c,1.40,1.41 cPickle.c,2.48,2.49 cmathmodule.c,2.18,2.19 mathmodule.c,2.51,2.52 posixmodule.c,2.162,2.163 pypcre.c,2.20,2.21 resource.c,2.16,2.17 rotormodule.c,2.28,2.29 selectmodule.c,2.41,2.42 socketmodule.c,1.123,1.124 structmodule.c,2.36,2.37 timemodule.c,2.97,2.98

Peter Schneider-Kamp python-dev@python.org
2000年7月31日 08:28:07 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv14376/Modules
Modified Files:
	_tkinter.c audioop.c cPickle.c cmathmodule.c mathmodule.c 
	posixmodule.c pypcre.c resource.c rotormodule.c selectmodule.c 
	socketmodule.c structmodule.c timemodule.c 
Log Message:
merge Include/my*.h into Include/pyport.h
marked my*.h as obsolete
Index: _tkinter.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_tkinter.c,v
retrieving revision 1.109
retrieving revision 1.110
diff -C2 -r1.109 -r1.110
*** _tkinter.c	2000年07月24日 14:43:34	1.109
--- _tkinter.c	2000年07月31日 15:28:04	1.110
***************
*** 50,60 ****
 #ifdef macintosh
 #define MAC_TCL
- #include "myselect.h"
 #endif
 
- #ifdef PYOS_OS2
- #include "myselect.h"
- #endif
- 
 #include <tcl.h>
 #include <tk.h>
--- 50,55 ----
***************
*** 256,261 ****
 #ifdef WITH_THREAD
 #ifndef MS_WINDOWS
- #include "mytime.h"
- #include "myselect.h"
 
 /* Millisecond sleep() for Unix platforms. */
--- 251,254 ----
Index: audioop.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/audioop.c,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -r1.40 -r1.41
*** audioop.c	2000年07月21日 06:00:07	1.40
--- audioop.c	2000年07月31日 15:28:04	1.41
***************
*** 32,37 ****
 #endif
 
- #include "mymath.h"
- 
 /* Code shamelessly stolen from sox,
 ** (c) Craig Reese, Joe Campbell and Jeff Poskanzer 1989 */
--- 32,35 ----
Index: cPickle.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/cPickle.c,v
retrieving revision 2.48
retrieving revision 2.49
diff -C2 -r2.48 -r2.49
*** cPickle.c	2000年07月24日 14:43:34	2.48
--- cPickle.c	2000年07月31日 15:28:04	2.49
***************
*** 55,59 ****
 #include "Python.h"
 #include "cStringIO.h"
- #include "mymath.h"
 
 #ifndef Py_eval_input
--- 55,58 ----
Index: cmathmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/cmathmodule.c,v
retrieving revision 2.18
retrieving revision 2.19
diff -C2 -r2.18 -r2.19
*** cmathmodule.c	2000年07月24日 11:17:40	2.18
--- cmathmodule.c	2000年07月31日 15:28:04	2.19
***************
*** 5,10 ****
 #include "Python.h"
 
- #include "mymath.h"
- 
 #ifdef i860
 /* Cray APP has bogus definition of HUGE_VAL in <math.h> */
--- 5,8 ----
Index: mathmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/mathmodule.c,v
retrieving revision 2.51
retrieving revision 2.52
diff -C2 -r2.51 -r2.52
*** mathmodule.c	2000年07月21日 06:00:07	2.51
--- mathmodule.c	2000年07月31日 15:28:04	2.52
***************
*** 13,18 ****
 #include "Python.h"
 
- #include "mymath.h"
- 
 #ifndef _MSC_VER
 #ifndef __STDC__
--- 13,16 ----
Index: posixmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v
retrieving revision 2.162
retrieving revision 2.163
diff -C2 -r2.162 -r2.163
*** posixmodule.c	2000年07月26日 17:29:12	2.162
--- posixmodule.c	2000年07月31日 15:28:04	2.163
***************
*** 46,51 ****
 #endif
 
- #include "mytime.h"		/* For clock_t on some systems */
- 
 #ifdef HAVE_FCNTL_H
 #include <fcntl.h>
--- 46,49 ----
Index: pypcre.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/pypcre.c,v
retrieving revision 2.20
retrieving revision 2.21
diff -C2 -r2.20 -r2.21
*** pypcre.c	2000年07月16日 12:04:31	2.20
--- pypcre.c	2000年07月31日 15:28:04	2.21
***************
*** 48,52 ****
 #include "pcre-int.h"
 #include "Python.h"
- #include "mymalloc.h"
 #include <ctype.h>
 #include "graminit.h"
--- 48,51 ----
Index: resource.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/resource.c,v
retrieving revision 2.16
retrieving revision 2.17
diff -C2 -r2.16 -r2.17
*** resource.c	2000年07月24日 16:06:23	2.16
--- resource.c	2000年07月31日 15:28:04	2.17
***************
*** 10,14 ****
 
 #include "Python.h"
- #include "mytime.h" /* needed for SunOS4.1 */
 #include <sys/resource.h>
 #include <sys/time.h>
--- 10,13 ----
Index: rotormodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/rotormodule.c,v
retrieving revision 2.28
retrieving revision 2.29
diff -C2 -r2.28 -r2.29
*** rotormodule.c	2000年07月21日 06:00:07	2.28
--- rotormodule.c	2000年07月31日 15:28:04	2.29
***************
*** 57,61 ****
 
 #include "Python.h"
- #include "mymath.h"
 
 #ifndef TRUE
--- 57,60 ----
Index: selectmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/selectmodule.c,v
retrieving revision 2.41
retrieving revision 2.42
diff -C2 -r2.41 -r2.42
*** selectmodule.c	2000年07月22日 23:57:55	2.41
--- selectmodule.c	2000年07月31日 15:28:04	2.42
***************
*** 47,51 ****
 #define SOCKET int
 #else
- #include "myselect.h" /* Also includes mytime.h */
 #define SOCKET int
 #endif
--- 47,50 ----
Index: socketmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/socketmodule.c,v
retrieving revision 1.123
retrieving revision 1.124
diff -C2 -r1.123 -r1.124
*** socketmodule.c	2000年07月25日 12:56:37	1.123
--- socketmodule.c	2000年07月31日 15:28:04	1.124
***************
*** 127,131 ****
 
 #include <sys/types.h>
- #include "mytime.h"
 
 #include <signal.h>
--- 127,130 ----
Index: structmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/structmodule.c,v
retrieving revision 2.36
retrieving revision 2.37
diff -C2 -r2.36 -r2.37
*** structmodule.c	2000年07月21日 06:00:07	2.36
--- structmodule.c	2000年07月31日 15:28:04	2.37
***************
*** 40,44 ****
 
 #include "Python.h"
- #include "mymath.h"
 
 #include <limits.h>
--- 40,43 ----
Index: timemodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/timemodule.c,v
retrieving revision 2.97
retrieving revision 2.98
diff -C2 -r2.97 -r2.98
*** timemodule.c	2000年07月25日 12:56:37	2.97
--- timemodule.c	2000年07月31日 15:28:04	2.98
***************
*** 15,22 ****
 #include <ctype.h>
 
- #ifdef HAVE_SELECT
- #include "mymath.h"
- #endif
- 
 #ifdef macintosh
 #include <time.h>
--- 15,18 ----
***************
*** 39,48 ****
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
- #endif
- 
- #if defined(HAVE_SELECT) && !defined(__BEOS__)
- #include "myselect.h"
- #else
- #include "mytime.h"
 #endif
 
--- 35,38 ----

AltStyle によって変換されたページ (->オリジナル) /