[Python-checkins] r56194 - python/branches/cpy_merge/Modules/_picklemodule.c

alexandre.vassalotti python-checkins at python.org
Sun Jul 8 21:29:28 CEST 2007


Author: alexandre.vassalotti
Date: Sun Jul  8 21:29:27 2007
New Revision: 56194

Modified:
   python/branches/cpy_merge/Modules/_picklemodule.c
Log:
Make fast_save_leave() static.


Modified: python/branches/cpy_merge/Modules/_picklemodule.c
==============================================================================
--- python/branches/cpy_merge/Modules/_picklemodule.c	(original)
+++ python/branches/cpy_merge/Modules/_picklemodule.c	Sun Jul  8 21:29:27 2007
@@ -913,7 +913,7 @@
     return 1;
 }
 
-int
+static int
 fast_save_leave(Picklerobject *self, PyObject *obj)
 {
     if (self->fast_container-- >= PY_CPICKLE_FAST_LIMIT) {


More information about the Python-checkins mailing list