Update of /cvsroot/pyode/pyode/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7191
Modified Files:
ode.pyx
Log Message:
Updated/created doc strings
Index: ode.pyx
===================================================================
RCS file: /cvsroot/pyode/pyode/src/ode.pyx,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ode.pyx 3 Jul 2004 16:57:41 -0000 1.2
--- ode.pyx 12 Jul 2004 12:36:14 -0000 1.3
***************
*** 17,21 ****
# be deleted.
! """Python Open Dynamics Engine (ODE) wrapper.
This module contains classes and functions that wrap the functionality
--- 17,23 ----
# be deleted.
! # Excplicitly assign the module doc string to __doc__
! # (otherwise it won't show up which is probably a "bug" in Pyrex (v0.9.2.1))
! __doc__ = """Python Open Dynamics Engine (ODE) wrapper.
This module contains classes and functions that wrap the functionality
***************
*** 41,44 ****
--- 43,47 ----
- FixedJoint
- ContactJoint
+ - AMotor
Geom classes:
***************
*** 183,186 ****
--- 186,194 ----
def CloseODE():
+ """CloseODE()
+
+ Deallocate some extra memory used by ODE that can not be deallocated
+ using the normal destroy functions.
+ """
dCloseODE()
|