This fails in Python 2, but not Python 3: ```python from distributed import Nanny from distributed.utils_test import gen_cluster @gen_cluster(client=True, Worker=Nanny) def test_startup(c, s, a, b): pass for i in range(100): test_startup() ```
This fails in Python 2, but not Python 3: