diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-05 19:26:16 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-05 19:26:16 (GMT) |
commit | 50ae47b0dedcd4f8bda2722514ddeae09266f8da (patch) | |
tree | d41228f2e6456ca9ab2f553c8512c12134fe83b4 /Doc/lib/libstat.tex | |
parent | 1dc3a501a67e369139002991e13465ac914eb28b (diff) | |
download | cpython-50ae47b0dedcd4f8bda2722514ddeae09266f8da.zip cpython-50ae47b0dedcd4f8bda2722514ddeae09266f8da.tar.gz cpython-50ae47b0dedcd4f8bda2722514ddeae09266f8da.tar.bz2 |
Removed bosities around example code; not sure where that stuff crept
in!
Diffstat (limited to 'Doc/lib/libstat.tex')
-rw-r--r-- | Doc/lib/libstat.tex | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/Doc/lib/libstat.tex b/Doc/lib/libstat.tex index ad4bf89..1f55e84 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 - - |