MCPcopy Create free account
hub / github.com/apache/arrow / change_cwd

Function change_cwd

python/pyarrow/tests/util.py:213–219  ·  view source on GitHub ↗
(path)

Source from the content-addressed store, hash-verified

211
212@contextlib.contextmanager
213def change_cwd(path):
214 curdir = os.getcwd()
215 os.chdir(str(path))
216 try:
217 yield
218 finally:
219 os.chdir(curdir)
220
221
222@contextlib.contextmanager

Calls

no outgoing calls