~jtaylor/ubuntu/precise/python-numpy/multiarch-fix-818867

« back to all changes in this revision

Viewing changes to numpy/fft/fftpack_litemodule.c

  • Committer: Bazaar Package Importer
  • Author(s): Sandro Tosi
  • Date: 2010-10-07 10:19:13 UTC
  • mfrom: (7.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20101007101913-8b1kmt8ho4upcl9s
Tags: 1:1.4.1-5
* debian/patches/10_use_local_python.org_object.inv_sphinx.diff
  - fixed small typo in description
* debian/patches/changeset_r8364.diff
  - fix memory corruption (double free); thanks to Joseph Barillari for the
    report and to Michael Gilbert for pushing resolution; Closes: #581058

Show diffs side-by-side

added added

removed removed

Lines of Context:
292
292
/* List of methods defined in the module */
293
293
 
294
294
static struct PyMethodDef fftpack_methods[] = {
295
 
    {"cfftf",   fftpack_cfftf,  1,      fftpack_cfftf__doc__},
296
 
    {"cfftb",   fftpack_cfftb,  1,      fftpack_cfftb__doc__},
297
 
    {"cffti",   fftpack_cffti,  1,      fftpack_cffti__doc__},
298
 
    {"rfftf",   fftpack_rfftf,  1,      fftpack_rfftf__doc__},
299
 
    {"rfftb",   fftpack_rfftb,  1,      fftpack_rfftb__doc__},
300
 
    {"rffti",   fftpack_rffti,  1,      fftpack_rffti__doc__},
301
 
    {NULL,              NULL}           /* sentinel */
 
295
    {"cfftf",   fftpack_cfftf,  1,      fftpack_cfftf__doc__},
 
296
    {"cfftb",   fftpack_cfftb,  1,      fftpack_cfftb__doc__},
 
297
    {"cffti",   fftpack_cffti,  1,      fftpack_cffti__doc__},
 
298
    {"rfftf",   fftpack_rfftf,  1,      fftpack_rfftf__doc__},
 
299
    {"rfftb",   fftpack_rfftb,  1,      fftpack_rfftb__doc__},
 
300
    {"rffti",   fftpack_rffti,  1,      fftpack_rffti__doc__},
 
301
    {NULL, NULL, 0, NULL}          /* sentinel */
302
302
};
303
303
 
304
304
 
305
305
/* Initialization function for the module (*must* be called initfftpack) */
306
306
 
307
 
static char fftpack_module_documentation[] =
308
 
""
309
 
;
 
307
static char fftpack_module_documentation[] = "" ;
310
308
 
311
309
PyMODINIT_FUNC initfftpack_lite(void)
312
310
{