##// END OF EJS Templates
Show make sure to flush hidden exception to screen....
Show make sure to flush hidden exception to screen. This is really unlikely but can happen if the exception is raised from within a stack of hidden frame, in which case we do want to say there were some hidden frames. I guess in that case we actually really want to not hide that last one, but this might really be a rare case. This is already fixed in the backport to 7.x

File last commit:

r25608:70b7090a
r25845:21270571
Show More
configtraits.py
16 lines | 414 B | text/x-python | PythonLexer
Thomas Kluyver
Make each config option individually linkable
r23831 """Directives and roles for documenting traitlets config options.
::
.. configtrait:: Application.log_datefmt
Description goes here.
Cross reference like this: :configtrait:`Application.log_datefmt`.
"""
Lumir Balhar
Fix compatibility with the latest release of Sphinx...
r25608
Thomas Kluyver
Make each config option individually linkable
r23831
def setup(app):
app.add_object_type('configtrait', 'configtrait', objname='Config option')
metadata = {'parallel_read_safe': True, 'parallel_write_safe': True}
return metadata