mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Keep gcc -Wall happy
This commit is contained in:
parent
f0b69f01eb
commit
7c14103d77
5 changed files with 4 additions and 5 deletions
|
@ -279,6 +279,7 @@ all_ins(d)
|
||||||
if (ins(d, "LOCK_EX", (long)LOCK_EX)) return -1;
|
if (ins(d, "LOCK_EX", (long)LOCK_EX)) return -1;
|
||||||
if (ins(d, "LOCK_NB", (long)LOCK_NB)) return -1;
|
if (ins(d, "LOCK_NB", (long)LOCK_NB)) return -1;
|
||||||
if (ins(d, "LOCK_UN", (long)LOCK_UN)) return -1;
|
if (ins(d, "LOCK_UN", (long)LOCK_UN)) return -1;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
extern int Py_Main();
|
extern int Py_Main();
|
||||||
|
|
||||||
|
int
|
||||||
main(argc, argv)
|
main(argc, argv)
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
|
|
|
@ -62,8 +62,6 @@ static PyObject *ReopError; /* Exception */
|
||||||
#define BEGINNING_OF_BUFFER 7
|
#define BEGINNING_OF_BUFFER 7
|
||||||
#define END_OF_BUFFER 8
|
#define END_OF_BUFFER 8
|
||||||
|
|
||||||
static unsigned char *reop_casefold;
|
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
makeresult(regs, num_regs)
|
makeresult(regs, num_regs)
|
||||||
struct re_registers *regs;
|
struct re_registers *regs;
|
||||||
|
|
|
@ -77,6 +77,6 @@ Py_FrozenMain(argc, argv)
|
||||||
if (inspect && isatty((int)fileno(stdin)))
|
if (inspect && isatty((int)fileno(stdin)))
|
||||||
sts = PyRun_AnyFile(stdin, "<stdin>") != 0;
|
sts = PyRun_AnyFile(stdin, "<stdin>") != 0;
|
||||||
|
|
||||||
Py_Exit(sts);
|
Py_Finalize();
|
||||||
/*NOTREACHED*/
|
return sts;
|
||||||
}
|
}
|
||||||
|
|
|
@ -692,7 +692,6 @@ static int
|
||||||
init_builtin(name)
|
init_builtin(name)
|
||||||
char *name;
|
char *name;
|
||||||
{
|
{
|
||||||
PyInterpreterState *interp = PyThreadState_Get()->interp;
|
|
||||||
struct _inittab *p;
|
struct _inittab *p;
|
||||||
PyObject *mod;
|
PyObject *mod;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue