From: Benjamin Peterson Date: Fri, 10 Sep 2010 23:53:14 +0000 (+0000) Subject: typo X-Git-Tag: v3.2a3~327 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e208b7c5b16d4150abde76063bc23e36b7304af5;p=python typo --- diff --git a/Python/ceval.c b/Python/ceval.c index 51d9fbfb75..a181ca83fe 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -4394,7 +4394,7 @@ unicode_concatenate(PyObject *v, PyObject *w, return NULL; } - if (Py_REFCNF(v) == 2) { + if (Py_REFCNT(v) == 2) { /* In the common case, there are 2 references to the value * stored in 'variable' when the += is performed: one on the * value stack (in 'v') and one still stored in the @@ -4435,7 +4435,7 @@ unicode_concatenate(PyObject *v, PyObject *w, } } - if (Py_REFCNF(v) == 1 && !PyUnicode_CHECK_INTERNED(v)) { + if (Py_REFCNT(v) == 1 && !PyUnicode_CHECK_INTERNED(v)) { /* Now we own the last reference to 'v', so we can resize it * in-place. */