diff options
author | Raymond Hettinger <python@rcn.com> | 2002-12-14 17:17:56 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-12-14 17:17:56 (GMT) |
commit | a828586c3a2a2c07558f8872ef115adc3e24ad9f (patch) | |
tree | 4098abde88aa1adbaf27b4b30f1733cd0e7f95c0 /Objects | |
parent | bfed346259b27a51153b1f1bf5e4f062247e6246 (diff) | |
download | cpython-a828586c3a2a2c07558f8872ef115adc3e24ad9f.zip cpython-a828586c3a2a2c07558f8872ef115adc3e24ad9f.tar.gz cpython-a828586c3a2a2c07558f8872ef115adc3e24ad9f.tar.bz2 |
Punctuation fix.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index a9c229a..45a229a 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -281,9 +281,9 @@ type_set_bases(PyTypeObject *type, PyObject *value, void *context) Py_DECREF(temp); /* any base that was in __bases__ but now isn't, we - need to remove |type| from it's tp_subclasses. + need to remove |type| from its tp_subclasses. conversely, any class now in __bases__ that wasn't - needs to have |type| added to it's subclasses. */ + needs to have |type| added to its subclasses. */ /* for now, sod that: just remove from all old_bases, add to all new_bases */ |