Kaydet (Commit) a597dde3 authored tarafından Guido van Rossum's avatar Guido van Rossum

cosmetic changes so these modules will work with the strict new naming scheme

üst 6c1874fc
...@@ -953,7 +953,7 @@ PyCursesWindow_GetAttr(self, name) ...@@ -953,7 +953,7 @@ PyCursesWindow_GetAttr(self, name)
PyCursesWindowObject *self; PyCursesWindowObject *self;
char *name; char *name;
{ {
return findmethod(PyCursesWindow_Methods, (PyObject *)self, name); return Py_FindMethod(PyCursesWindow_Methods, (PyObject *)self, name);
} }
/* --------------- PAD routines ---------------- */ /* --------------- PAD routines ---------------- */
......
...@@ -744,7 +744,7 @@ Tkapp_DeleteCommand (self, args) ...@@ -744,7 +744,7 @@ Tkapp_DeleteCommand (self, args)
/** File Handler **/ /** File Handler **/
void static void
FileHandler (clientData, mask) FileHandler (clientData, mask)
ClientData clientData; /* Is: (func, file) */ ClientData clientData; /* Is: (func, file) */
int mask; int mask;
...@@ -770,7 +770,7 @@ GetFileNo (file) ...@@ -770,7 +770,7 @@ GetFileNo (file)
PyObject *file; /* Either an int >= 0 or an object with a PyObject *file; /* Either an int >= 0 or an object with a
.fileno() method that returns an int >= 0 */ .fileno() method that returns an int >= 0 */
{ {
object *meth, *args, *res; PyObject *meth, *args, *res;
int id; int id;
if (PyInt_Check(file)) { if (PyInt_Check(file)) {
id = PyInt_AsLong(file); id = PyInt_AsLong(file);
...@@ -933,7 +933,7 @@ Tktt_GetAttr (self, name) ...@@ -933,7 +933,7 @@ Tktt_GetAttr (self, name)
static PyTypeObject Tktt_Type = static PyTypeObject Tktt_Type =
{ {
OB_HEAD_INIT (&PyType_Type) PyObject_HEAD_INIT (&PyType_Type)
0, /*ob_size */ 0, /*ob_size */
"tktimertoken", /*tp_name */ "tktimertoken", /*tp_name */
sizeof (TkttObject), /*tp_basicsize */ sizeof (TkttObject), /*tp_basicsize */
...@@ -1122,7 +1122,7 @@ Tkapp_GetAttr (self, name) ...@@ -1122,7 +1122,7 @@ Tkapp_GetAttr (self, name)
static PyTypeObject Tkapp_Type = static PyTypeObject Tkapp_Type =
{ {
OB_HEAD_INIT (&PyType_Type) PyObject_HEAD_INIT (&PyType_Type)
0, /*ob_size */ 0, /*ob_size */
"tkapp", /*tp_name */ "tkapp", /*tp_name */
sizeof (TkappObject), /*tp_basicsize */ sizeof (TkappObject), /*tp_basicsize */
......
...@@ -34,8 +34,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -34,8 +34,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* MPZ objects */ /* MPZ objects */
#include "allobjects.h" #include "allobjects.h"
#include "modsupport.h" /* For getargs() etc. */
#include "rename1.h"
#include <assert.h> #include <assert.h>
#include <sys/types.h> /* For size_t */ #include <sys/types.h> /* For size_t */
......
...@@ -57,8 +57,8 @@ NOTE: you MUST use the SAME key in rotor.newrotor() ...@@ -57,8 +57,8 @@ NOTE: you MUST use the SAME key in rotor.newrotor()
#include "Python.h" #include "Python.h"
#include <stdio.h>
#include <math.h> #include <math.h>
#define TRUE 1 #define TRUE 1
#define FALSE 0 #define FALSE 0
...@@ -217,7 +217,7 @@ PyRotor_New(num_rotors, key) ...@@ -217,7 +217,7 @@ PyRotor_New(num_rotors, key)
goto fail; goto fail;
return xp; return xp;
fail: fail:
DECREF(xp); Py_DECREF(xp);
return (PyRotorObject *)PyErr_NoMemory(); return (PyRotorObject *)PyErr_NoMemory();
} }
...@@ -736,7 +736,7 @@ PyRotor_SetKey(self, args) ...@@ -736,7 +736,7 @@ PyRotor_SetKey(self, args)
return Py_None; return Py_None;
} }
static struct methodlist PyRotor_Methods[] = { static struct PyMethodDef PyRotor_Methods[] = {
{"encrypt", (PyCFunction)PyRotor_Encrypt}, {"encrypt", (PyCFunction)PyRotor_Encrypt},
{"encryptmore", (PyCFunction)PyRotor_EncryptMore}, {"encryptmore", (PyCFunction)PyRotor_EncryptMore},
{"decrypt", (PyCFunction)PyRotor_Decrypt}, {"decrypt", (PyCFunction)PyRotor_Decrypt},
...@@ -756,7 +756,7 @@ PyRotor_GetAttr(s, name) ...@@ -756,7 +756,7 @@ PyRotor_GetAttr(s, name)
} }
static PyTypeObject PyRotor_Type = { static PyTypeObject PyRotor_Type = {
PyObject_HEAD_INIT(&Typetype) PyObject_HEAD_INIT(&PyType_Type)
0, /*ob_size*/ 0, /*ob_size*/
"rotor", /*tp_name*/ "rotor", /*tp_name*/
sizeof(PyRotorObject), /*tp_size*/ sizeof(PyRotorObject), /*tp_size*/
...@@ -793,7 +793,7 @@ PyRotor_Rotor(self, args) ...@@ -793,7 +793,7 @@ PyRotor_Rotor(self, args)
return (PyObject * )r; return (PyObject * )r;
} }
static struct methodlist PyRotor_Rotor_Methods[] = { static struct PyMethodDef PyRotor_Rotor_Methods[] = {
{"newrotor", (PyCFunction)PyRotor_Rotor}, {"newrotor", (PyCFunction)PyRotor_Rotor},
{NULL, NULL} /* Sentinel */ {NULL, NULL} /* Sentinel */
}; };
......
...@@ -28,7 +28,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -28,7 +28,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "intrcheck.h" #include "intrcheck.h"
#include <signal.h> #include <signal.h>
#include <errno.h>
#ifndef SIG_ERR #ifndef SIG_ERR
#define SIG_ERR ((RETSIGTYPE (*)())-1) #define SIG_ERR ((RETSIGTYPE (*)())-1)
...@@ -130,16 +129,16 @@ PySignal_Alarm(self, args) ...@@ -130,16 +129,16 @@ PySignal_Alarm(self, args)
return PyInt_FromLong(alarm(t)); return PyInt_FromLong(alarm(t));
} }
static object * static PyObject *
PySignal_Pause(self, args) PySignal_Pause(self, args)
PyObject *self; /* Not used */ PyObject *self; /* Not used */
PyObject *args; PyObject *args;
{ {
if (!PyArg_NoArgs(args)) if (!PyArg_NoArgs(args))
return NULL; return NULL;
BGN_SAVE Py_BEGIN_ALLOW_THREADS
pause(); pause();
END_SAVE Py_END_ALLOW_THREADS
Py_INCREF(Py_None); Py_INCREF(Py_None);
return Py_None; return Py_None;
} }
...@@ -418,7 +417,7 @@ sigcheck() ...@@ -418,7 +417,7 @@ sigcheck()
if (get_thread_ident() != main_thread) if (get_thread_ident() != main_thread)
return 0; return 0;
#endif #endif
f = getframe(); f = PyEval_GetFrame();
if (f == (PyObject *)NULL) if (f == (PyObject *)NULL)
f = Py_None; f = Py_None;
for (i = 1; i < NSIG; i++) { for (i = 1; i < NSIG; i++) {
...@@ -446,13 +445,13 @@ sigcheck() ...@@ -446,13 +445,13 @@ sigcheck()
/* Replacement for intrcheck.c functionality */ /* Replacement for intrcheck.c functionality */
void void
initintr() PyOS_InitInterrupts ()
{ {
initsignal(); initsignal();
} }
int int
intrcheck() PyOS_InterruptOccurred ()
{ {
if (PySignal_SignalHandlerArray[SIGINT].tripped) { if (PySignal_SignalHandlerArray[SIGINT].tripped) {
#ifdef WITH_THREAD #ifdef WITH_THREAD
......
...@@ -580,7 +580,7 @@ BUILD_FUNC_DEF_2(PySocketSock_getsockopt,PySocketSockObject *,s, PyObject *,args ...@@ -580,7 +580,7 @@ BUILD_FUNC_DEF_2(PySocketSock_getsockopt,PySocketSockObject *,s, PyObject *,args
if (buf == NULL) if (buf == NULL)
return NULL; return NULL;
res = getsockopt(s->sock_fd, level, optname, res = getsockopt(s->sock_fd, level, optname,
(ANY *)getstringvalue(buf), &buflen); (ANY *)PyString_AsString(buf), &buflen);
if (res < 0) { if (res < 0) {
Py_DECREF(buf); Py_DECREF(buf);
return PySocket_Err(); return PySocket_Err();
...@@ -732,7 +732,7 @@ BUILD_FUNC_DEF_2(PySocketSock_listen,PySocketSockObject *,s, PyObject *,args) ...@@ -732,7 +732,7 @@ BUILD_FUNC_DEF_2(PySocketSock_listen,PySocketSockObject *,s, PyObject *,args)
static PyObject * static PyObject *
BUILD_FUNC_DEF_2(PySocketSock_makefile,PySocketSockObject *,s, PyObject *,args) BUILD_FUNC_DEF_2(PySocketSock_makefile,PySocketSockObject *,s, PyObject *,args)
{ {
extern int fclose PROTO((FILE *)); extern int fclose Py_PROTO((FILE *));
char *mode; char *mode;
int fd; int fd;
FILE *fp; FILE *fp;
...@@ -762,7 +762,7 @@ BUILD_FUNC_DEF_2(PySocketSock_recv,PySocketSockObject *,s, PyObject *,args) ...@@ -762,7 +762,7 @@ BUILD_FUNC_DEF_2(PySocketSock_recv,PySocketSockObject *,s, PyObject *,args)
if (buf == NULL) if (buf == NULL)
return NULL; return NULL;
Py_BEGIN_ALLOW_THREADS Py_BEGIN_ALLOW_THREADS
n = recv(s->sock_fd, getstringvalue(buf), len, flags); n = recv(s->sock_fd, PyString_AsString(buf), len, flags);
Py_END_ALLOW_THREADS Py_END_ALLOW_THREADS
if (n < 0) if (n < 0)
return PySocket_Err(); return PySocket_Err();
...@@ -937,12 +937,12 @@ BUILD_FUNC_DEF_1(PySocketSock_repr,PySocketSockObject *,s) ...@@ -937,12 +937,12 @@ BUILD_FUNC_DEF_1(PySocketSock_repr,PySocketSockObject *,s)
PyObject *addro; PyObject *addro;
struct sockaddr *addr; struct sockaddr *addr;
char buf[512]; char buf[512];
object *t, *comma, *v; PyObject *t, *comma, *v;
int i, len; int i, len;
sprintf(buf, sprintf(buf,
"<socket object, fd=%d, family=%d, type=%d, protocol=%d>", "<socket object, fd=%d, family=%d, type=%d, protocol=%d>",
s->sock_fd, s->sock_family, s->sock_type, s->sock_proto); s->sock_fd, s->sock_family, s->sock_type, s->sock_proto);
t = newstringobject(buf); t = PyString_FromString(buf);
return t; return t;
} }
......
...@@ -24,13 +24,10 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -24,13 +24,10 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* syslog module */ /* syslog module */
#include "allobjects.h" #include "Python.h"
#include "modsupport.h"
#include <syslog.h> #include <syslog.h>
#include "rename1.h"
static PyObject * static PyObject *
syslog_openlog(self, args) syslog_openlog(self, args)
PyObject * self; PyObject * self;
......
...@@ -26,8 +26,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -26,8 +26,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Interface to Sjoerd's portable C thread library */ /* Interface to Sjoerd's portable C thread library */
#include "allobjects.h" #include "allobjects.h"
#include "modsupport.h"
#include "ceval.h"
#ifndef WITH_THREAD #ifndef WITH_THREAD
Error! The rest of Python is not compiled with thread support. Error! The rest of Python is not compiled with thread support.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment