DEBSOURCES
Skip Quicknav
sources / cython / 3.0.11%2Bdfsg-2 / docs / examples / tutorial / pure / compiled_switch.py
123456
import cython if cython.compiled: print("Yep, I'm compiled.") else: print("Just a lowly interpreted script.")