summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-08-01 23:51:51 -0700
committerRaymond Hettinger <python@rcn.com>2014-08-01 23:51:51 -0700
commit6d4affeef57c7d927566af9b829bf57eb695eb9b (patch)
tree2a35ade4ecd7cea76c3bbcf802eb2987a16c22ac /Objects
parent4039b08dd426f5227ab6264b82ce6d6929838cc0 (diff)
downloadcpython-6d4affeef57c7d927566af9b829bf57eb695eb9b.tar.gz
Fix typo in comment.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/classobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c
index 2c9c21694e..636d17831d 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;