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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ecf960fe188bfc97c68bc9e40c69554e06bcdbce;p=thirdparty%2FPython%2Fcpython.git 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 000000000000..a713733aaa6e --- /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)