Brython-3.3.5
Besides many bug fixes, the main features in this release are :
- many improvements to the management of bytes objects and base64 encoding
- support of built-ins
memoryview
andvars()
- a new syntax for DOMNode event binding :
@element.bind("click")
def click(ev):
...
is the same as
def click(ev):
...
element.bind("click", click)