From 3c6f87274b0cd4839829953c354db321fc31a3ff Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 7 Feb 2013 23:41:34 +0000 Subject: [PATCH] [Cython] Fixed docstring for Sim1D.save Resolves Issue 141. --- interfaces/cython/cantera/onedim.pyx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/interfaces/cython/cantera/onedim.pyx b/interfaces/cython/cantera/onedim.pyx index ce76b1ff0..876387e79 100644 --- a/interfaces/cython/cantera/onedim.pyx +++ b/interfaces/cython/cantera/onedim.pyx @@ -718,8 +718,14 @@ cdef class Sim1D: loglevel=1): """ Save the solution in XML format. + :param filename: + solution file + :param name: + solution name within the file + :param description: + custom description text - >>> s.save(file='save.xml', name='energy_off', + >>> s.save(filename='save.xml', name='energy_off', ... description='solution with energy eqn. disabled') """