Skip to content

Instantly share code, notes, and snippets.

@Tatsh
Tatsh / pushd.py
Created October 24, 2013 05:26
pushd for Python
from os import chdir, getcwd
from os.path import realpath
class PushdContext:
cwd = None
original_dir = None
def __init__(self, dirname):
self.cwd = realpath(dirname)