diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-02-06 15:22:49 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-02-06 15:22:49 (GMT) |
commit | c9172d3832c2bbdf093f3ec428574d83407f46c8 (patch) | |
tree | b12355c5067580b197d6db4966b37490d59fa9d2 | |
parent | 80fd7851ac4e808c879203f4d6a461a0bab563c9 (diff) | |
download | cpython-c9172d3832c2bbdf093f3ec428574d83407f46c8.zip cpython-c9172d3832c2bbdf093f3ec428574d83407f46c8.tar.gz cpython-c9172d3832c2bbdf093f3ec428574d83407f46c8.tar.bz2 |
Comment typo fix
-rw-r--r-- | Objects/typeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index d2e9b87..01eb706 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -640,7 +640,7 @@ subtype_dealloc(PyObject *self) /* We get here only if the type has GC */ /* UnTrack and re-Track around the trashcan macro, alas */ - /* See explanation at end of funtion for full disclosure */ + /* See explanation at end of function for full disclosure */ PyObject_GC_UnTrack(self); ++_PyTrash_delete_nesting; Py_TRASHCAN_SAFE_BEGIN(self); |