We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
d3182fd
Add strict mode to varname() (#57)
strict
varname()
def func(): return varname(strict=True) a = func() # 'a' a = [func()] # ImproperUseError
Support the walrus operator (:=) (#58)
:=
a = (b := func()) # a == b == 'b'
Credits: