Files
dotfiles/python/.pdbrc
J. Fernando Sánchez dc4b4968bc python: fix pdb history
2026-06-11 15:28:27 +02:00

2 lines
204 B
Plaintext

import importlib.util, os; spec = importlib.util.spec_from_file_location("pdb_startup", os.path.expanduser("~/.pdb_startup.py")); mod = importlib.util.module_from_spec(spec); spec.loader.exec_module(mod)