From: Fred Drake Date: Mon, 5 Apr 1999 19:26:16 +0000 (+0000) Subject: Removed bosities around example code; not sure where that stuff crept X-Git-Tag: v1.5.2c1~42 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50ae47b0dedcd4f8bda2722514ddeae09266f8da;p=python Removed bosities around example code; not sure where that stuff crept in! --- diff --git a/Doc/lib/libstat.tex b/Doc/lib/libstat.tex index ad4bf8926c..1f55e84d66 100644 --- a/Doc/lib/libstat.tex +++ b/Doc/lib/libstat.tex @@ -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 - -