I have a simple function with a doctest, which, when run with Sphinx's make doctest
, gives me the following error:
File "scheemey.rst", line ?, in default
Failed example:
verify_balanced('asdf (foo [bar] [[baz], {}, ()]')
Exception raised:
Traceback (most recent call last):
File "/usr/local/Cellar/python/2.7.8/Frameworks/Python.framework/Versions/2.7/lib/python2.7/doctest.py", line 1315, in __run
compileflags, 1) in test.globs
File "<doctest default[0]>", line 1, in <module>
verify_balanced('asdf (foo [bar] [[baz], {}, ()]')
NameError: name 'verify_balanced' is not defined
What could be causing this?