Thanks to visit codestin.com Credit goes to github.com
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 1ccccc0 commit 1fab9eeCopy full SHA for 1fab9ee
2 files changed
Lib/email/_compat21.py
@@ -25,9 +25,9 @@ def walk(self):
25
26
27
# Used internally by the Header class
28
-def _intdiv2(i):
29
- """Do an integer divide by 2."""
30
- return i / 2
+def _floordiv(x, y):
+ """Do integer division."""
+ return x / y
31
32
33
Lib/email/_compat22.py
@@ -26,9 +26,9 @@ def walk(self):
- return i // 2
+ return x // y
34
0 commit comments