wouldnt it be better, since some functions do have docstrings and it is valuable debugging info to get it in those cases, to instead insert a line above like if docstring==None then docstring='<C function without docstring>' or if the type error is caused by docstring being a numeric then converting it, rather than removing the variable?
--Roger Check out my website at www.rogerwickes.com for a good deal on my book and training course, as well as information about my latest activities. Use coupon Papasmurf for $15 off! ________________________________ From: Tamito KAJIYAMA <[email protected]> To: [email protected] Sent: Mon, April 5, 2010 5:09:45 PM Subject: Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [28018] branches/soc-2008-mxcurioni/source /blender/python/doc/sphinx_doc_gen.py: Added an entry for the documentation of the Freestyle Python API. Hi, I just committed a fix for a minor bug in sphinx_doc_gen.py within the Freestyle branch. This fix also applies to the trunk. Hope this helps, -- KAJIYAMA, Tamito <[email protected]> ----- Original Message ----- From: "Tamito Kajiyama" <[email protected]> To: <[email protected]> Sent: Monday, April 05, 2010 10:06 PM Subject: [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [28018] branches/soc-2008-mxcurioni/source /blender/python/doc/sphinx_doc_gen.py: Added an entry for the documentation of the Freestyle Python API. > Revision: 28018 > > http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=28018 > Author: kjym3 > Date: 2010-04-05 23:06:32 +0200 (Mon, 05 Apr 2010) > > Log Message: > ----------- > Added an entry for the documentation of the Freestyle Python API. > Also fixed a minor bug in sphinx_doc_gen.py that raised a TypeError > when a C extension function does not have a docstring. > > Modified Paths: > -------------- > branches/soc-2008-mxcurioni/source/blender/python/doc/sphinx_doc_gen.py > > Modified: > branches/soc-2008-mxcurioni/source/blender/python/doc/sphinx_doc_gen.py > =================================================================== > --- branches/soc-2008-mxcurioni/source/blender/python/doc/sphinx_doc_gen.py > 2010-04-05 18:34:18 UTC (rev 28017) > +++ branches/soc-2008-mxcurioni/source/blender/python/doc/sphinx_doc_gen.py > 2010-04-05 21:06:32 UTC (rev 28018) > @@ -129,7 +129,7 @@ > fw("\n") > else: > fw(ident + ".. function:: %s()\n\n" % identifier) > - fw(ident + " Undocumented function.\n\n" % identifier) > + fw(ident + " Undocumented function.\n\n") _______________________________________________ Bf-committers mailing list [email protected] http://lists.blender.org/mailman/listinfo/bf-committers _______________________________________________ Bf-committers mailing list [email protected] http://lists.blender.org/mailman/listinfo/bf-committers
