From 50ae47b0dedcd4f8bda2722514ddeae09266f8da Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 5 Apr 1999 19:26:16 +0000 Subject: [PATCH] Removed bosities around example code; not sure where that stuff crept in! --- Doc/lib/libstat.tex | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/Doc/lib/libstat.tex b/Doc/lib/libstat.tex index ad4bf8926ce..1f55e84d66a 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 - -