summaryrefslogtreecommitdiffstats
path: root/Lib/email/_compat21.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-06-02 18:59:06 (GMT)
committerBarry Warsaw <barry@python.org>2002-06-02 18:59:06 (GMT)
commitff49279f7caeedf1ade2ea522badf0d60aa038e5 (patch)
treeaf99894a97edef5006e2f8aaeaeca1668d05b55f /Lib/email/_compat21.py
parente0d4972acc8cfd4b8fb16c074a8031e50fab0f29 (diff)
downloadcpython-ff49279f7caeedf1ade2ea522badf0d60aa038e5.zip
cpython-ff49279f7caeedf1ade2ea522badf0d60aa038e5.tar.gz
cpython-ff49279f7caeedf1ade2ea522badf0d60aa038e5.tar.bz2
_intdiv2() -> _floordiv(), merge of uncommitted changes.
Diffstat (limited to 'Lib/email/_compat21.py')
-rw-r--r--Lib/email/_compat21.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/email/_compat21.py b/Lib/email/_compat21.py
index 478d276..76d6f50 100644
--- a/Lib/email/_compat21.py
+++ b/Lib/email/_compat21.py
@@ -24,10 +24,10 @@ def walk(self):
return parts
-# Used internally by the Header class
-def _floordiv(x, y):
- """Do integer division."""
- return x / y
+# Python 2.2 spells floor division //
+def _floordiv(i, j):
+ """Do a floor division, i/j."""
+ return i / j