We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f292f commit ca614a3Copy full SHA for ca614a3
Lib/multiprocessing/dummy/__init__.py
@@ -33,7 +33,7 @@
33
34
class DummyProcess(threading.Thread):
35
36
- def __init__(self, group=None, target=None, name=None, args=(), kwargs={}):
+ def __init__(self, group=None, target=None, name=None, args=(), kwargs=None):
37
threading.Thread.__init__(self, group, target, name, args, kwargs)
38
self._pid = None
39
self._children = weakref.WeakKeyDictionary()
0 commit comments