]> granicus.if.org Git - python/commitdiff
Removed bosities around example code; not sure where that stuff crept
authorFred Drake <fdrake@acm.org>
Mon, 5 Apr 1999 19:26:16 +0000 (19:26 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 5 Apr 1999 19:26:16 +0000 (19:26 +0000)
in!

Doc/lib/libstat.tex

index ad4bf8926ce1449a3409f7aba6fda67cf67df355..1f55e84d66a957d88984dcd83809aa173d8d280e 100644 (file)
@@ -109,15 +109,8 @@ def process(dir, func):
             print 'Skipping %s/%s' % (dir, f)
 
 def f(file):
--Egon
-
-
-
     print 'frobbed', file
 
-if __name__ == '__main__': process(sys.argv[1], f)
+if __name__ == '__main__':
+    process(sys.argv[1], f)
 \end{verbatim}
-
--Egon
-
-