[Python-3000-checkins] r58691 - python/branches/py3k-pep3137/Objects/unicodeobject.c
guido.van.rossum
python-3000-checkins at python.org
Sat Oct 27 18:25:05 CEST 2007
Author: guido.van.rossum
Date: Sat Oct 27 18:25:04 2007
New Revision: 58691
Modified:
python/branches/py3k-pep3137/Objects/unicodeobject.c
Log:
Fix typo in comment (ob_sstate -> state).
Modified: python/branches/py3k-pep3137/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k-pep3137/Objects/unicodeobject.c (original)
+++ python/branches/py3k-pep3137/Objects/unicodeobject.c Sat Oct 27 18:25:04 2007
@@ -101,7 +101,7 @@
function will delete the reference from this dictionary.
Another way to look at this is that to say that the actual reference
- count of a string is: s->ob_refcnt + (s->ob_sstate?2:0)
+ count of a string is: s->ob_refcnt + (s->state ? 2 : 0)
*/
static PyObject *interned;
More information about the Python-3000-checkins
mailing list