From 1fab9ee085755ed2f7abcf28794d7c20bd51a97a Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 2 Jun 2002 16:38:14 +0000 Subject: Get email test to pass. Barry, hope this is what you had in mind --- Lib/email/_compat22.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Lib/email/_compat22.py') diff --git a/Lib/email/_compat22.py b/Lib/email/_compat22.py index d505c96436..c88007cb4c 100644 --- a/Lib/email/_compat22.py +++ b/Lib/email/_compat22.py @@ -26,9 +26,9 @@ def walk(self): # Used internally by the Header class -def _intdiv2(i): - """Do an integer divide by 2.""" - return i // 2 +def _floordiv(x, y): + """Do integer division.""" + return x // y -- cgit v1.2.1