From: Jack Jansen Date: Fri, 26 Jun 1998 14:56:38 +0000 (+0000) Subject: A well-known example for freeze. X-Git-Tag: v1.5.2a1~419 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ecf960fe188bfc97c68bc9e40c69554e06bcdbce;p=python A well-known example for freeze. --- diff --git a/Mac/Tools/macfreeze/hello/hello.py b/Mac/Tools/macfreeze/hello/hello.py new file mode 100644 index 0000000000..a713733aaa --- /dev/null +++ b/Mac/Tools/macfreeze/hello/hello.py @@ -0,0 +1,5 @@ +import sys + +print 'Hello world' +print 'Builtin modules:', sys.builtin_module_names +sys.exit(1)