diff options
| author | Raymond Hettinger <python@rcn.com> | 2014-08-02 06:51:51 (GMT) |
|---|---|---|
| committer | Raymond Hettinger <python@rcn.com> | 2014-08-02 06:51:51 (GMT) |
| commit | 9376c8b5e3de2dc6b6c6d7bcf28480d41374de36 (patch) | |
| tree | bcf6ebf50c05847f03de90cf1cffc1c441285332 /Objects/classobject.c | |
| parent | a16fd7a7ec7b8149902a7739a8f440a56fa970c6 (diff) | |
| download | cpython-9376c8b5e3de2dc6b6c6d7bcf28480d41374de36.zip cpython-9376c8b5e3de2dc6b6c6d7bcf28480d41374de36.tar.gz cpython-9376c8b5e3de2dc6b6c6d7bcf28480d41374de36.tar.bz2 | |
Fix typo in comment.
Diffstat (limited to 'Objects/classobject.c')
| -rw-r--r-- | Objects/classobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c index 2c9c216..636d178 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -4,7 +4,7 @@ #include "Python.h" #include "structmember.h" -/* Free list for method objects to safe malloc/free overhead +/* Free list for method objects to save malloc/free overhead * The im_self element is used to chain the elements. */ static PyMethodObject *free_list; |
