mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
ANSI-fying
added excplicit node * parameter to termvalid argument in validate_two_chain_ops of parsermodule.c (as proposed by fred)
This commit is contained in:
parent
41c36ffe83
commit
286da3b46a
4 changed files with 55 additions and 157 deletions
|
|
@ -265,7 +265,6 @@ Sleep(int milli)
|
|||
{
|
||||
/* XXX Too bad if you don't have select(). */
|
||||
struct timeval t;
|
||||
double frac;
|
||||
t.tv_sec = milli/1000;
|
||||
t.tv_usec = (milli%1000) * 1000;
|
||||
select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &t);
|
||||
|
|
@ -1503,7 +1502,6 @@ static PyObject *
|
|||
Tkapp_DeleteFileHandler(PyObject *self, PyObject *args)
|
||||
{
|
||||
PyObject *file;
|
||||
FileHandler_ClientData *data;
|
||||
int tfile;
|
||||
|
||||
if (!PyArg_ParseTuple(args, "O:deletefilehandler", &file))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue