mirror of https://github.com/python/cpython
Keep gcc -Wall happy.
This commit is contained in:
parent
bae95189b0
commit
0f4bbd2f34
|
@ -82,9 +82,9 @@ PyCObject_Import(module_name, name)
|
|||
PyObject *m, *c;
|
||||
void *r=NULL;
|
||||
|
||||
if(m=PyImport_ImportModule(module_name))
|
||||
if((m=PyImport_ImportModule(module_name)))
|
||||
{
|
||||
if(c=PyObject_GetAttrString(m,name))
|
||||
if((c=PyObject_GetAttrString(m,name)))
|
||||
{
|
||||
r=PyCObject_AsVoidPtr(c);
|
||||
Py_DECREF(c);
|
||||
|
|
|
@ -522,7 +522,7 @@ r_object(p)
|
|||
object *varnames = NULL;
|
||||
object *filename = NULL;
|
||||
object *name = NULL;
|
||||
int firstlineno;
|
||||
int firstlineno = 0;
|
||||
object *lnotab = NULL;
|
||||
|
||||
code = r_object(p);
|
||||
|
|
Loading…
Reference in New Issue