~pythonregexp2.7/python/issue2636-17

« back to all changes in this revision

Viewing changes to Modules/_ctypes/callbacks.c

  • Committer: Jeffrey C. Jacobs
  • Date: 2008-04-27 13:52:36 UTC
  • mfrom: (39021.1.11)
  • Revision ID: timehorse@starship.python.net-20080427135236-j5e3wresfuyl2cf7
Merged in changes from Main Line

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
/**************************************************************/
16
16
 
17
 
static CThunkObject_dealloc(PyObject *_self)
 
17
static void
 
18
CThunkObject_dealloc(PyObject *_self)
18
19
{
19
20
        CThunkObject *self = (CThunkObject *)_self;
20
21
        Py_XDECREF(self->converters);