summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMario Corchero <mariocj89@gmail.com>2019-06-01 04:49:10 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2019-06-01 04:49:09 (GMT)
commit354227a1e90036d8c1481a211746de912c6c7c33 (patch)
treed6f17c6225b1dc76f7bae5b8399df63f3f289358 /Misc
parent664fe3996f7e05ae351526f02b21504bb065bcf8 (diff)
downloadcpython-354227a1e90036d8c1481a211746de912c6c7c33.zip
cpython-354227a1e90036d8c1481a211746de912c6c7c33.tar.gz
cpython-354227a1e90036d8c1481a211746de912c6c7c33.tar.bz2
Add option to trace to run modules (GH-5134)
Adds a new option in trace that allows tracing runnable modules. It is exposed as `--module module_name` as `-m` is already in use for another argument.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-01-07-21-04-50.bpo-32515.D8_Wcb.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-01-07-21-04-50.bpo-32515.D8_Wcb.rst b/Misc/NEWS.d/next/Library/2018-01-07-21-04-50.bpo-32515.D8_Wcb.rst
new file mode 100644
index 0000000..ad585b3
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-01-07-21-04-50.bpo-32515.D8_Wcb.rst
@@ -0,0 +1 @@
+trace.py can now run modules via python3 -m trace -t --module module_name