Index: Modules/_ctypes/_ctypes.c =================================================================== --- Modules/_ctypes/_ctypes.c (revision 59539) +++ Modules/_ctypes/_ctypes.c (working copy) @@ -98,7 +98,7 @@ * CField_Type * */ - + #include "Python.h" #include "structmember.h" @@ -126,7 +126,7 @@ char *conversion_mode_encoding = NULL; char *conversion_mode_errors = NULL; - + /******************************************************************/ /* StructType_Type - a meta type/class. Creating a new class using this one as @@ -510,7 +510,7 @@ 0, /* tp_free */ }; - + /******************************************************************/ /* @@ -724,7 +724,7 @@ 0, /* tp_free */ }; - + /******************************************************************/ /* ArrayType_Type @@ -1089,7 +1089,7 @@ 0, /* tp_free */ }; - + /******************************************************************/ /* SimpleType_Type @@ -1937,7 +1937,7 @@ 0, /* tp_free */ }; - + /***************************************************************** * Code to keep needed objects alive */ @@ -2406,7 +2406,7 @@ return KeepRef(mem, index, result); } - + /******************************************************************/ static PyObject * GenericCData_new(PyTypeObject *type, PyObject *args, PyObject *kwds) @@ -3478,7 +3478,7 @@ CFuncPtr_new, /* tp_new */ 0, /* tp_free */ }; - + /*****************************************************************/ /* Struct_Type @@ -3649,7 +3649,7 @@ 0, /* tp_free */ }; - + /******************************************************************/ /* Array_Type @@ -4010,7 +4010,7 @@ return result; } - + /******************************************************************/ /* Simple_Type @@ -4173,7 +4173,7 @@ GenericCData_new, /* tp_new */ 0, /* tp_free */ }; - + /******************************************************************/ /* Pointer_Type @@ -4551,7 +4551,7 @@ 0, /* tp_free */ }; - + /******************************************************************/ /* * Module initialization. Index: Modules/_ctypes/cfield.c =================================================================== --- Modules/_ctypes/cfield.c (revision 59539) +++ Modules/_ctypes/cfield.c (working copy) @@ -315,7 +315,7 @@ 0, /* tp_free */ }; - + /******************************************************************/ /* Accessor functions Index: Modules/_tkinter.c =================================================================== --- Modules/_tkinter.c (revision 59539) +++ Modules/_tkinter.c (working copy) @@ -270,7 +270,7 @@ (void *) v, Py_Refcnt(v))) - + /**** Error Handling ****/ static PyObject *Tkinter_TclError; @@ -281,7 +281,7 @@ static PyObject *trbInCmd; - + static PyObject * Tkinter_Error(PyObject *v) { @@ -290,7 +290,7 @@ } - + /**** Utils ****/ static int Tkinter_busywaitinterval = 20; @@ -331,7 +331,7 @@ } #endif /* WITH_THREAD */ - + static char * AsString(PyObject *value, PyObject *tmp) { @@ -362,7 +362,7 @@ } - + #define ARGSZ 64 static char * @@ -442,7 +442,7 @@ } - + static PyObject * Split(char *list) { @@ -546,7 +546,7 @@ return arg; } - + /**** Tkapp Object ****/ #ifndef WITH_APPINIT @@ -573,8 +573,8 @@ #endif /* !WITH_APPINIT */ - + /* Initialize the Tk application; see the `main' function in * `tkMain.c'. */ @@ -709,7 +709,7 @@ Py_END_ALLOW_THREADS } - + /** Tcl Eval **/ typedef struct { @@ -1395,7 +1395,7 @@ } - + /** Tcl Variable **/ TCL_DECLARE_MUTEX(var_mutex) @@ -1564,7 +1564,7 @@ } - + static PyObject * GetVar(PyObject *self, PyObject *args, int flags) { @@ -1606,7 +1606,7 @@ } - + static PyObject * UnsetVar(PyObject *self, PyObject *args, int flags) { @@ -1643,7 +1643,7 @@ } - + /** Tcl to Python **/ static PyObject * @@ -1800,7 +1800,7 @@ } - + static PyObject * Tkapp_SplitList(PyObject *self, PyObject *args) { @@ -1879,7 +1879,7 @@ } - + /** Tcl Command **/ /* Client data struct */ @@ -1969,8 +1969,8 @@ } - + TCL_DECLARE_MUTEX(command_mutex) typedef struct CommandEvent{ @@ -2057,7 +2057,7 @@ } - + static PyObject * Tkapp_DeleteCommand(PyObject *selfptr, PyObject *args) { @@ -2093,7 +2093,7 @@ } - + #ifdef HAVE_CREATEFILEHANDLER /** File Handler **/ @@ -2247,7 +2247,7 @@ } #endif /* HAVE_CREATEFILEHANDLER */ - + /**** Tktt Object (timer token) ****/ static PyTypeObject Tktt_Type; @@ -2350,7 +2350,7 @@ }; - + /** Timer Handler **/ static void @@ -2419,7 +2419,7 @@ return (PyObject *) v; } - + /** Event Loop **/ static PyObject * @@ -2609,7 +2609,7 @@ return Py_None; } - + /**** Tkapp Method List ****/ static PyMethodDef Tkapp_methods[] = @@ -2655,7 +2655,7 @@ }; - + /**** Tkapp Type Methods ****/ static void @@ -2694,7 +2694,7 @@ }; - + /**** Tkinter Module ****/ typedef struct { Index: Objects/stringobject.c =================================================================== --- Objects/stringobject.c (revision 59539) +++ Objects/stringobject.c (working copy) @@ -2795,7 +2795,7 @@ return Py_BuildValue("(s#)", v->ob_sval, Py_Size(v)); } - + static PyMethodDef string_methods[] = { {"__getnewargs__", (PyCFunction)string_getnewargs, METH_NOARGS},