summaryrefslogtreecommitdiff
path: root/tests/cmdline/cmd_file_variable.py
blob: 6cac6744d904e096d6d9309cf7bd91eb79f025bf (plain)
1
2
3
4
5
# Test that __file__ is set correctly for script execution
try:
    print("__file__ =", __file__)
except NameError:
    print("__file__ not defined")