From: Bertrand <bco...@us...> - 2016-05-01 16:37:38
|
Update of /cvsroot/jsbsim/JSBSim/tests In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv31234/tests Modified Files: jsbsim.pyx Log Message: Keep a consistent naming between Python and C++ interfaces Index: jsbsim.pyx =================================================================== RCS file: /cvsroot/jsbsim/JSBSim/tests/jsbsim.pyx,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** jsbsim.pyx 24 Jan 2016 18:49:28 -0000 1.10 --- jsbsim.pyx 1 May 2016 16:37:35 -0000 1.11 *************** *** 383,387 **** self.thisptr.DoTrim(mode) ! def do_disable_output(self): """ Disables data logging to all outputs. --- 383,387 ---- self.thisptr.DoTrim(mode) ! def disable_output(self): """ Disables data logging to all outputs. *************** *** 389,393 **** self.thisptr.DisableOutput() ! def do_enable_output(self): """ Enables data logging to all outputs. --- 389,393 ---- self.thisptr.DisableOutput() ! def enable_output(self): """ Enables data logging to all outputs. |