##// END OF EJS Templates
Fix formatting of usage examples for `set_env` magic (#13911)...
Fix formatting of usage examples for `set_env` magic (#13911) See the difference between how `env` and `set_env` look in the [docs](http://ipython.readthedocs.io/en/stable/interactive/magics.html). <img width="600" alt="image" src="https://user-images.githubusercontent.com/14007150/215095416-c8e08aca-4c61-4bc9-a84e-81209607c74f.png"> <img width="725" alt="image" src="https://user-images.githubusercontent.com/14007150/215095718-532fe30f-a4b0-446e-ba61-73c5cf1e988e.png">

File last commit:

r21078:2098e1d4
r28081:13f20b59 merge
Show More
sentinel.py
17 lines | 421 B | text/x-python | PythonLexer
"""Sentinel class for constants with useful reprs"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
class Sentinel(object):
def __init__(self, name, module, docstring=None):
self.name = name
self.module = module
if docstring:
self.__doc__ = docstring
def __repr__(self):
return str(self.module)+'.'+self.name