Update of /cvsroot/pyode/pyode/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv915/src
Modified Files:
ode.pyx
Log Message:
Reapply weakref patch after finding bug in tutorial3.py.
Index: ode.pyx
===================================================================
RCS file: /cvsroot/pyode/pyode/src/ode.pyx,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** ode.pyx 14 Jun 2007 18:16:47 -0000 1.20
--- ode.pyx 16 Jun 2007 06:50:11 -0000 1.21
***************
*** 154,160 ****
## This causes some kind of weird bug! Need to fix this.
! #import weakref
! #_geom_c2py_lut = weakref.WeakValueDictionary()
! _geom_c2py_lut = {}
# Mass
--- 154,159 ----
## This causes some kind of weird bug! Need to fix this.
! import weakref
! _geom_c2py_lut = weakref.WeakValueDictionary()
# Mass
|