Skip to content
GitLab
  • Explore
  • Sign in
  • TASTETASTE
  • uPython-mirror
  • Repository
  • uPython-mirror
  • py
  • vm.c
Find file Blame History Permalink
  • Paul Sokolovsky's avatar
    py: Implement support for "except Exception as var" clause. · f9090344
    Paul Sokolovsky authored Mar 23, 2014
    For this, needed to implement DELETE_NAME bytecode (because var bound
    in except clause is automatically deleted at its end).
    http://docs.python.org/3/reference/compound_stmts.html#except :
    "When an exception has been assigned using as target, it is cleared at
    the end of the except clause."
    f9090344