Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# negative power should produce float
x = 2
print(x**-2)
x = 3
x **= -2
print("%.5f" % x)