Kaydet (Commit) 1fab9ee0 authored tarafından Neal Norwitz's avatar Neal Norwitz

Get email test to pass. Barry, hope this is what you had in mind

üst 1ccccc08
...@@ -25,9 +25,9 @@ def walk(self): ...@@ -25,9 +25,9 @@ def walk(self):
# Used internally by the Header class # Used internally by the Header class
def _intdiv2(i): def _floordiv(x, y):
"""Do an integer divide by 2.""" """Do integer division."""
return i / 2 return x / y
......
...@@ -26,9 +26,9 @@ def walk(self): ...@@ -26,9 +26,9 @@ def walk(self):
# Used internally by the Header class # Used internally by the Header class
def _intdiv2(i): def _floordiv(x, y):
"""Do an integer divide by 2.""" """Do integer division."""
return i // 2 return x // y
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment