Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 148863
Collapse All | Expand All

(-)configure.in (-1 / +1 lines)
Lines 247-253 Link Here
247
  python_inc=no
247
  python_inc=no
248
  python_lib=no
248
  python_lib=no
249
  python_search_path="/neo/opt /usr/local /usr /c"
249
  python_search_path="/neo/opt /usr/local /usr /c"
250
  python_versions="2.4 2.3 2.2 2.1 2.0 1.5 24 23 22 21 20 15"
250
  python_versions="2.6 2.5 2.4 2.3 2.2 2.1 2.0 1.5 26 25 24 23 22 21 20 15"
251
  if test $cs_cv_python_path != "no" -a -x $cs_cv_python_path; then
251
  if test $cs_cv_python_path != "no" -a -x $cs_cv_python_path; then
252
    python_bin=$cs_cv_python_path
252
    python_bin=$cs_cv_python_path
253
    vers=`$python_bin -c "import sys; print sys.version[[:3]]"`
253
    vers=`$python_bin -c "import sys; print sys.version[[:3]]"`
(-)python/neo_cgi.c (-1 / +1 lines)
Lines 57-63 Link Here
57
  {
57
  {
58
    cgi_destroy (&(ho->cgi));
58
    cgi_destroy (&(ho->cgi));
59
  }
59
  }
60
  PyMem_DEL(ho);
60
  PyObject_DEL(ho);
61
}
61
}
62
62
63
PyObject * p_cgi_to_object (CGI *data)
63
PyObject * p_cgi_to_object (CGI *data)
(-)python/neo_cs.c (-1 / +1 lines)
Lines 54-60 Link Here
54
  {
54
  {
55
    cs_destroy (&(ho->data));
55
    cs_destroy (&(ho->data));
56
  }
56
  }
57
  PyMem_DEL(ho);
57
  PyObject_FREE (ho);
58
}
58
}
59
59
60
PyObject * p_cs_to_object (CSPARSE *data)
60
PyObject * p_cs_to_object (CSPARSE *data)
(-)python/neo_util.c (-1 / +1 lines)
Lines 76-82 Link Here
76
  {
76
  {
77
    hdf_destroy (&(ho->data));
77
    hdf_destroy (&(ho->data));
78
  }
78
  }
79
  PyMem_DEL(ho);
79
  PyObject_DEL(ho);
80
}
80
}
81
81
82
PyObject * p_hdf_to_object (HDF *data, int dealloc)
82
PyObject * p_hdf_to_object (HDF *data, int dealloc)

Return to bug 148863