Re: [sphinx-dev] autodoc: keeping names of contants in signature

2011-08-31 Thread Sebastian Rahlf
Hi! I'm using Sphinx's autodoc feature to document my API. For example::    DEFAULT_OPTION = 'default'    def do_something(msg, option=DEFAULT_OPTION):        print msg The generated documentation now shows the following signature:    do_something(msg, option='default') How can I tell

Re: [sphinx-dev] autodoc: keeping names of contants in signature

2011-08-31 Thread Sebastian Wiesner
2011/8/31 Sebastian Rahlf ba...@rotekroete.de: Hi! I'm using Sphinx's autodoc feature to document my API. For example::    DEFAULT_OPTION = 'default'    def do_something(msg, option=DEFAULT_OPTION):        print msg The generated documentation now shows the following signature:    

Re: [sphinx-dev] autodoc: keeping names of contants in signature

2011-08-30 Thread Sebastian Wiesner
2011/8/30 Sebastian Rahlf ba...@rotekroete.de: Hi! I'm using Sphinx's autodoc feature to document my API. For example::    DEFAULT_OPTION = 'default'    def do_something(msg, option=DEFAULT_OPTION):        print msg The generated documentation now shows the following signature: