We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe9415e commit c2d4466Copy full SHA for c2d4466
mprof
@@ -282,6 +282,8 @@ def read_mprofile_file(filename):
282
- "func_timestamp": (dict) for each function, timestamps and memory
283
usage upon entering and exiting.
284
- 'cmd_line': (str) command-line ran for this profile.
285
+
286
+ XXX TODO this should be moved to memory_profiler.py
287
"""
288
func_ts = {}
289
mem_usage = []
@@ -458,7 +460,7 @@ def plot_action():
458
460
leg.get_frame().set_alpha(0.5)
459
461
pl.grid()
462
if options.output:
- pl.savefig(options.output)
463
+ pl.savefig(options.output, transparent=True)
464
else:
465
pl.show()
466
0 commit comments