Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(691)

Side by Side Diff: tools/telemetry/third_party/coverage/lab/show_platform.py

Issue 1366913004: Add coverage Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 import platform
2 import types
3
4 for n in dir(platform):
5 if n.startswith("_"):
6 continue
7 v = getattr(platform, n)
8 if isinstance(v, types.ModuleType):
9 continue
10 if callable(v):
11 try:
12 v = v()
13 n += "()"
14 except:
15 continue
16 print "%30s: %r" % (n, v)
OLDNEW
« no previous file with comments | « tools/telemetry/third_party/coverage/lab/run_trace.py ('k') | tools/telemetry/third_party/coverage/lab/show_pyc.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698