summaryrefslogtreecommitdiff
path: root/tests/pyscript/self_in_py.py
blob: f0f6271a9ed21ae7cd3feb81bd63f5d776784349 (plain)
1
2
3
4
5
6
# flake8: noqa F821
# Tests self_in_py in pyscripts
if 'self' in globals():
    print("I see self")
else:
    print("I do not see self")