Skip to content

0.7.2 (#59)

Compare
Choose a tag to compare
@pwwang pwwang released this 10 Aug 07:39
· 65 commits to master since this release
d3182fd
  • Add strict mode to varname() (#57)

    def func():
      return varname(strict=True)
    
    a = func() # 'a'
    a = [func()] # ImproperUseError
  • Support the walrus operator (:=) (#58)

    a = (b := func())
    # a == b == 'b'

Credits: