~ubuntu-branches/ubuntu/raring/python-scipy/raring-proposed

« back to all changes in this revision

Viewing changes to Lib/integrate/_quadpackmodule.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-07 14:12:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070107141212-mm0ebkh5b37hcpzn
* Remove build dependency on python-numpy-dev.
* python-scipy: Depend on python-numpy instead of python-numpy-dev.
* Package builds on other archs than i386. Closes: #402783.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
{"_qawce", quadpack_qawce, METH_VARARGS, doc_qawce},
15
15
{NULL,          NULL, 0, NULL}
16
16
};
17
 
void init_quadpack() {
 
17
PyMODINIT_FUNC init_quadpack(void) {
18
18
  PyObject *m, *d, *s;
19
19
  m = Py_InitModule("_quadpack", quadpack_module_methods);
20
20
  import_array();