aboutsummaryrefslogtreecommitdiffstats
path: root/python/interactive.py
blob: a2f09edbd89a6fd60645e592196db6ae6357ceb6 (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 a 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())