Minor cleanup.

This commit is contained in:
Simon Forman 2021-11-20 11:05:30 -08:00
parent b41b22248c
commit 0bbe9c890e
1 changed files with 2 additions and 2 deletions

View File

@ -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)