Minor cleanup.
This commit is contained in:
+1
-1
@@ -688,7 +688,7 @@ def divmod_(S):
|
||||
'''
|
||||
divmod(x, y) -> (quotient, remainder)
|
||||
|
||||
Return the tuple (x//y, x%y). Invariant: div*y + mod == x.
|
||||
Return the tuple (x//y, x%y). Invariant: q * y + r == x.
|
||||
'''
|
||||
a, (b, stack) = S
|
||||
d, m = divmod(a, b)
|
||||
|
||||
Reference in New Issue
Block a user