File: nested1.py

package info (click to toggle)
python-cleo 2.2.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,120 kB
  • sloc: python: 8,293; makefile: 22; sh: 2
file content (5 lines) | stat: -rw-r--r-- 90 bytes parent folder | download | duplicates (2)
1
2
3
4
5
def outer() -> None:
    def inner() -> None:
        raise Exception("Foo")

    inner()