diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-16 14:29:35 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-16 14:29:35 (GMT) |
commit | c77b9311969f7479870552a57c334029fb5a6eec (patch) | |
tree | e4c6b19293c0f19fbcda5715db4426a06b19892f /Tools | |
parent | d0e11ec5b07c7c49061a2e4a73a0c231d9b46ad7 (diff) | |
download | cpython-c77b9311969f7479870552a57c334029fb5a6eec.zip cpython-c77b9311969f7479870552a57c334029fb5a6eec.tar.gz cpython-c77b9311969f7479870552a57c334029fb5a6eec.tar.bz2 |
Issue #11614: import __hello__ prints "Hello World!". Patch written by Andreas
Stührk.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/freeze/flag.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/freeze/flag.py b/Tools/freeze/flag.py index ea6d633..1cefa0a 100644 --- a/Tools/freeze/flag.py +++ b/Tools/freeze/flag.py @@ -1 +1,2 @@ initialized = True +print("Hello world!") |