aboutsummaryrefslogtreecommitdiffstats
path: root/python/interactive.py
blob: c8c359f0cacf438226df8f6cafda8d743d60572a (plain)
1
2
3
4
5
6
# Pass this file to one of the Python script arguments (e.g. --pre-place interactive.py)
# to drop to an command-line interactive Python session in the middle of place and route 

import code
print("Press Ctrl+D to finish interactive session")
code.interact(local=locals())