diff options
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_csv.c | 16 | ||||
-rw-r--r-- | Modules/_ctypes/callproc.c | 2 | ||||
-rw-r--r-- | Modules/_cursesmodule.c | 2 | ||||
-rw-r--r-- | Modules/_sqlite/connection.c | 2 | ||||
-rw-r--r-- | Modules/_sqlite/module.c | 2 | ||||
-rw-r--r-- | Modules/_tkinter.c | 2 |
6 files changed, 13 insertions, 13 deletions
diff --git a/Modules/_csv.c b/Modules/_csv.c index fb5530a..5314ef6 100644 --- a/Modules/_csv.c +++ b/Modules/_csv.c @@ -365,14 +365,14 @@ dialect_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) Py_INCREF(dialect); /* Can we reuse this instance? */ if (PyObject_TypeCheck(dialect, &Dialect_Type) && - delimiter == 0 && - doublequote == 0 && - escapechar == 0 && - lineterminator == 0 && - quotechar == 0 && - quoting == 0 && - skipinitialspace == 0 && - strict == 0) + delimiter == NULL && + doublequote == NULL && + escapechar == NULL && + lineterminator == NULL && + quotechar == NULL && + quoting == NULL && + skipinitialspace == NULL && + strict == NULL) return dialect; } diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c index 9b368ca..0b6faf9 100644 --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -132,7 +132,7 @@ _ctypes_get_errobj(int **pspace) PyObject *dict = PyThreadState_GetDict(); PyObject *errobj; static PyObject *error_object_name; - if (dict == 0) { + if (dict == NULL) { PyErr_SetString(PyExc_RuntimeError, "cannot get thread state"); return NULL; diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index 4d714ce..8f0a12b 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -2987,7 +2987,7 @@ PyCurses_tigetstr(PyObject *self, PyObject *args) return NULL; capname = tigetstr( capname ); - if (capname == 0 || capname == (char*) -1) { + if (capname == NULL || capname == (char*) -1) { Py_RETURN_NONE; } return PyBytes_FromString( capname ); diff --git a/Modules/_sqlite/connection.c b/Modules/_sqlite/connection.c index 72156b9..fab77ef 100644 --- a/Modules/_sqlite/connection.c +++ b/Modules/_sqlite/connection.c @@ -643,7 +643,7 @@ static void _pysqlite_step_callback(sqlite3_context *context, int argc, sqlite3_ aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*)); - if (*aggregate_instance == 0) { + if (*aggregate_instance == NULL) { *aggregate_instance = _PyObject_CallNoArg(aggregate_class); if (PyErr_Occurred()) { diff --git a/Modules/_sqlite/module.c b/Modules/_sqlite/module.c index 72c3a7f..59406e1 100644 --- a/Modules/_sqlite/module.c +++ b/Modules/_sqlite/module.c @@ -434,7 +434,7 @@ PyMODINIT_FUNC PyInit__sqlite3(void) PyDict_SetItemString(dict, "OptimizedUnicode", (PyObject*)&PyUnicode_Type); /* Set integer constants */ - for (i = 0; _int_constants[i].constant_name != 0; i++) { + for (i = 0; _int_constants[i].constant_name != NULL; i++) { tmp_obj = PyLong_FromLong(_int_constants[i].constant_value); if (!tmp_obj) { goto error; diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index ff51674..7ed2b02 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -1378,7 +1378,7 @@ Tkapp_CallArgs(PyObject *args, Tcl_Obj** objStore, int *pobjc) else if (!(PyTuple_Check(args) || PyList_Check(args))) { objv[0] = AsObj(args); - if (objv[0] == 0) + if (objv[0] == NULL) goto finally; objc = 1; Tcl_IncrRefCount(objv[0]); |