mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fix #1693149. Now you can pass several modules separated by
coma to trace.py in the same --ignore-module option. Thanks Raghuram Devarakonda.
This commit is contained in:
parent
5c60bfcfbf
commit
873c9857b7
2 changed files with 10 additions and 6 deletions
|
@ -64,12 +64,14 @@ The following command-line arguments are supported:
|
|||
stdout for each file processed.
|
||||
|
||||
:option:`--ignore-module`
|
||||
Ignore the named module and its submodules (if it is a package). May be given
|
||||
Accepts comma separated list of module names. Ignore each of the named
|
||||
module and its submodules (if it is a package). May be given
|
||||
multiple times.
|
||||
|
||||
:option:`--ignore-dir`
|
||||
Ignore all modules and packages in the named directory and subdirectories. May
|
||||
be given multiple times.
|
||||
Ignore all modules and packages in the named directory and subdirectories
|
||||
(multiple directories can be joined by os.pathsep). May be given multiple
|
||||
times.
|
||||
|
||||
|
||||
.. _trace-api:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue