=== modified file 'configure.in' --- configure.in 2006-09-23 21:51:37 +0000 +++ configure.in 2006-09-23 21:51:59 +0000 @@ -247,7 +247,7 @@ python_inc=no python_lib=no python_search_path="/neo/opt /usr/local /usr /c" - python_versions="2.4 2.3 2.2 2.1 2.0 1.5 24 23 22 21 20 15" + 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" if test $cs_cv_python_path != "no" -a -x $cs_cv_python_path; then python_bin=$cs_cv_python_path vers=`$python_bin -c "import sys; print sys.version[[:3]]"` === modified file 'python/neo_cgi.c' --- python/neo_cgi.c 2006-09-23 21:51:37 +0000 +++ python/neo_cgi.c 2006-09-23 22:19:15 +0000 @@ -57,7 +57,7 @@ { cgi_destroy (&(ho->cgi)); } - PyMem_DEL(ho); + PyObject_DEL(ho); } PyObject * p_cgi_to_object (CGI *data) === modified file 'python/neo_cs.c' --- python/neo_cs.c 2006-09-23 21:51:37 +0000 +++ python/neo_cs.c 2006-09-23 22:12:47 +0000 @@ -54,7 +54,7 @@ { cs_destroy (&(ho->data)); } - PyMem_DEL(ho); + PyObject_FREE (ho); } PyObject * p_cs_to_object (CSPARSE *data) === modified file 'python/neo_util.c' --- python/neo_util.c 2006-09-23 21:51:37 +0000 +++ python/neo_util.c 2006-09-23 22:18:54 +0000 @@ -76,7 +76,7 @@ { hdf_destroy (&(ho->data)); } - PyMem_DEL(ho); + PyObject_DEL(ho); } PyObject * p_hdf_to_object (HDF *data, int dealloc)