Skip to content

Commit 0f2658d

Browse files
updates to process and pipe import code...need a way to turn
billiard on/off
1 parent 4e98bd7 commit 0f2658d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

memory_profiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
("billiard", (lambda: True if "MEMPROF_PREFERS_BILLIARD" in os.environ and
2626
os.environ["MEMPROF_PREFERS_BILLIARD"] in ["True", "true", "TRUE", "1"]
2727
else False)),
28-
("multiprocessing",),
29-
("multiprocessing.dummy",)
28+
("multiprocessing", None,),
29+
("multiprocessing.dummy", None,)
3030
)
3131
for module_tuple in MULTILIBS:
3232
multi_module_name, use_if_test = module_tuple

0 commit comments

Comments
 (0)