All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 def function(**kwargs):
6 def function_replace_spaces(**kwargs):
7 t = a **2 + b** 3 + c ** 4
10 def function_dont_replace_spaces():
18 e = lazy(lambda **kwargs: 5)
24 k = [(2**idx, value) for idx, value in pairs]
25 l = mod.weights_[0] == pytest.approx(0.95**100, abs=0.001)
26 m = [([2**63], [1, 2**63])]
28 o = settings(max_examples=10**6)
29 p = {(k, k**2): v**2 for k, v in pairs}
30 q = [10**i for i in range(6)]
37 e = lazy(lambda **kwargs: 5)
42 j = super().name ** 5.0
43 k = [(2.0**idx, value) for idx, value in pairs]
44 l = mod.weights_[0] == pytest.approx(0.95**100, abs=0.001)
45 m = [([2.0**63.0], [1.0, 2**63.0])]
47 o = settings(max_examples=10**6.0)
48 p = {(k, k**2): v**2.0 for k, v in pairs}
49 q = [10.5**i for i in range(6)]
55 def function(**kwargs):
60 def function_replace_spaces(**kwargs):
61 t = a**2 + b**3 + c**4
64 def function_dont_replace_spaces():
72 e = lazy(lambda **kwargs: 5)
78 k = [(2**idx, value) for idx, value in pairs]
79 l = mod.weights_[0] == pytest.approx(0.95**100, abs=0.001)
80 m = [([2**63], [1, 2**63])]
82 o = settings(max_examples=10**6)
83 p = {(k, k**2): v**2 for k, v in pairs}
84 q = [10**i for i in range(6)]
91 e = lazy(lambda **kwargs: 5)
96 j = super().name ** 5.0
97 k = [(2.0**idx, value) for idx, value in pairs]
98 l = mod.weights_[0] == pytest.approx(0.95**100, abs=0.001)
99 m = [([2.0**63.0], [1.0, 2**63.0])]
101 o = settings(max_examples=10**6.0)
102 p = {(k, k**2): v**2.0 for k, v in pairs}
103 q = [10.5**i for i in range(6)]