mirror of
https://github.com/python/cpython.git
synced 2026-01-30 22:55:41 +00:00
6 lines
178 B
Plaintext
6 lines
178 B
Plaintext
"""This script turns the Python debugger on globally, meaning that
|
|
it will then stop at any breakpoint you might have defined."""
|
|
|
|
import PyDebugger
|
|
PyDebugger.startfrombottom()
|