Kaydet (Commit) d65ab950 authored tarafından Georg Brandl's avatar Georg Brandl

Fix tabs.

üst d5b635f1
......@@ -56,7 +56,7 @@ cell_compare(PyCellObject *a, PyCellObject *b)
{
/* Py3K warning for comparisons */
if (Py_Py3kWarningFlag &&
PyErr_Warn(PyExc_DeprecationWarning,
PyErr_Warn(PyExc_DeprecationWarning,
"cell comparisons not supported in 3.x") < 0) {
return -2;
}
......
......@@ -1779,7 +1779,7 @@ dict_richcompare(PyObject *v, PyObject *w, int op)
else {
/* Py3K warning if comparison isn't == or != */
if (Py_Py3kWarningFlag &&
PyErr_Warn(PyExc_DeprecationWarning,
PyErr_Warn(PyExc_DeprecationWarning,
"dict inequality comparisons not supported "
"in 3.x") < 0) {
return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment