From: Guido van Rossum Date: Tue, 14 Apr 1992 11:05:22 +0000 (+0000) Subject: improved lay-out; added call to main() X-Git-Tag: v0.9.8~358 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbdeebbbfaab1c2ed80315814492915ae590dc7c;p=thirdparty%2FPython%2Fcpython.git improved lay-out; added call to main() --- diff --git a/Demo/sgi/cd/sendcd.py b/Demo/sgi/cd/sendcd.py index 10b0fafc553b..499000044b4a 100755 --- a/Demo/sgi/cd/sendcd.py +++ b/Demo/sgi/cd/sendcd.py @@ -9,8 +9,8 @@ import sys from socket import * import getopt -HOST = 'voorn.cwi.nl' # The host where readcd.py is run -PORT = 50505 # Must match the port in readcd.py +HOST = 'voorn.cwi.nl' # The host where readcd.py is run +PORT = 50505 # Must match the port in readcd.py def main(): try: @@ -141,3 +141,5 @@ def triple(a, b, c): def zfill(n): s = `n` return '0' * (2 - len(s)) + s + +main()