<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from __future__ import division


# These functions have their own module in order to be compiled with the right
# __future__ flag (and be tested alongside the 2.x legacy division operator).

def truediv_usecase(x, y):
    return x / y

def itruediv_usecase(x, y):
    x /= y
    return x
</pre></body></html>