Is OptionParser in conflict with sphinx?

和自甴很熟 提交于 2019-11-26 18:31:34

问题


I'm trying to write a documentation for my project in sphinx and whenever sphinx encounters OptionParser in my module it gives me:

sphinx-build: error: no such option: -b

I thought that it's impossible, so I wrote a simple module to check this:

from optparse import OptionParser

"""some comment here"""

parser = OptionParser(conflict_handler='resolve')
parser.add_option('', '--force', action='store_true', dest='force', default=False, help='gqdel will skip asking questions, and delete them all.');
parser.add_option('', '--verbose', action='store_true', dest='verbose', default=False, help='Report additional information from gqdel')

(options, args) = parser.parse_args()

"""and here"""

print "foo"

And it gives me the same error. My rst looks like this:

some title
==========

.. automodule:: test
   :members:

回答1:


Here is what I think happens:

When Sphinx runs, autodoc imports your module and the toplevel code in the module is executed. An OptionParser instance is created, and it processes the command line arguments and options passed to sphinx-build, one of which is -b. Your OptionParser does not allow this option.

I would put the OptionParser code in a function so that it is not executed when the module is imported.




回答2:


This did the trick for me, add this at the bottom.

if __name__ == '__main__':

    parser = optparse.OptionParser()


来源:https://stackoverflow.com/questions/6912025/is-optionparser-in-conflict-with-sphinx

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!