summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libstat.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-04-05 19:26:16 (GMT)
committerFred Drake <fdrake@acm.org>1999-04-05 19:26:16 (GMT)
commit50ae47b0dedcd4f8bda2722514ddeae09266f8da (patch)
treed41228f2e6456ca9ab2f553c8512c12134fe83b4 /Doc/lib/libstat.tex
parent1dc3a501a67e369139002991e13465ac914eb28b (diff)
downloadcpython-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.tex11
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
-
-