Module: utils.syspathcontext
Context managers for adding things to sys.path temporarily.
Authors:
2 Classes
-
class
IPython.utils.syspathcontext.appended_to_syspath(dir)
Bases: object
A context for appending a directory to sys.path for a second.
-
__init__(dir)
Initialize self. See help(type(self)) for accurate signature.
-
class
IPython.utils.syspathcontext.prepended_to_syspath(dir)
Bases: object
A context for prepending a directory to sys.path for a second.
-
__init__(dir)
Initialize self. See help(type(self)) for accurate signature.