Files
Buffteks-Website/venv/lib/python3.12/site-packages/nbconvert/utils/_contextlib_chdir.py
2025-05-08 21:10:14 -05:00

23 lines
609 B
Python

"""Backport of Python 3.11's contextlib.chdir."""
import os
from contextlib import AbstractContextManager
class chdir(AbstractContextManager): # type:ignore[type-arg]
"""Non thread-safe context manager to change the current working directory."""
def __init__(self, path):
"""Initialize the manager."""
self.path = path
self._old_cwd = []
def __enter__(self):
"""Enter the context."""
self._old_cwd.append(os.getcwd())
os.chdir(self.path)
def __exit__(self, *excinfo):
"""Exit the context."""
os.chdir(self._old_cwd.pop())