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 1ea5e83 commit 32be859Copy full SHA for 32be859
tests/test_fix_classic_division.py
@@ -4,20 +4,24 @@
4
5
6
CLASSIC_DIVISION = ("""\
7
+a /= 3
8
1 / 2
9
""",
10
"""\
11
from __future__ import division
12
+a //= 3
13
1 // 2
14
""")
15
16
NEW_DIVISION = ("""\
17
18
19
20
21
22
23
24
25
26
27
0 commit comments