##// END OF EJS Templates
Remove opening/at-exit closing of devnull....
Remove opening/at-exit closing of devnull. This was likely due to an issue on Python 2 seeing the date, and does not seem useful anymore. Let's try to remove it. Should close #13896

File last commit:

r25608:70b7090a
r28057:4a065015
Show More
configtraits.py
16 lines | 414 B | text/x-python | PythonLexer
"""Directives and roles for documenting traitlets config options.
::
.. configtrait:: Application.log_datefmt
Description goes here.
Cross reference like this: :configtrait:`Application.log_datefmt`.
"""
def setup(app):
app.add_object_type('configtrait', 'configtrait', objname='Config option')
metadata = {'parallel_read_safe': True, 'parallel_write_safe': True}
return metadata