projects
/
idea
/
community.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add test for '-m package' interpreter option in debug mode (PY-15230)
[idea/community.git]
/
python
/
testData
/
debug
/
runner.py
1
import runpy
2
import sys
3
4
print(sys.argv)
5
6
x = 1
7
program = sys.argv[1]
8
sys.argv = sys.argv[1:]
9
10
11
runpy.run_path(program)