Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V3s6WnubSSrFjAQTLQdVbG
6 lines
255 B
Python
6 lines
255 B
Python
import os
|
|
|
|
# Parse-only safety canary. If the AST helper ever EXECUTES this file instead
|
|
# of merely PARSING it (ast.parse), it creates a file named SENTINEL in the
|
|
# working directory. The test asserts SENTINEL never appears.
|
|
os.system("touch SENTINEL")
|