We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bae9518 commit 0f4bbd2Copy full SHA for 0f4bbd2
2 files changed
Objects/cobject.c
@@ -82,9 +82,9 @@ PyCObject_Import(module_name, name)
82
PyObject *m, *c;
83
void *r=NULL;
84
85
- if(m=PyImport_ImportModule(module_name))
+ if((m=PyImport_ImportModule(module_name)))
86
{
87
- if(c=PyObject_GetAttrString(m,name))
+ if((c=PyObject_GetAttrString(m,name)))
88
89
r=PyCObject_AsVoidPtr(c);
90
Py_DECREF(c);
Python/marshal.c
@@ -522,7 +522,7 @@ r_object(p)
522
object *varnames = NULL;
523
object *filename = NULL;
524
object *name = NULL;
525
- int firstlineno;
+ int firstlineno = 0;
526
object *lnotab = NULL;
527
528
code = r_object(p);
0 commit comments