IPython Documentation

Table Of Contents

Previous topic

utils.sysinfo

Next topic

utils.terminal

This Page

utils.syspathcontext

Module: utils.syspathcontext

Inheritance diagram for IPython.utils.syspathcontext:

Context managers for adding things to sys.path temporarily.

Authors:

  • Brian Granger

Classes

appended_to_syspath

class IPython.utils.syspathcontext.appended_to_syspath(dir)

Bases: object

A context for appending a directory to sys.path for a second.

__init__(dir)

prepended_to_syspath

class IPython.utils.syspathcontext.prepended_to_syspath(dir)

Bases: object

A context for prepending a directory to sys.path for a second.

__init__(dir)