diff options
author | Guido van Rossum <guido@python.org> | 1993-11-19 13:13:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-11-19 13:13:22 (GMT) |
commit | 6f0132f490d6d091a0e3a57dafa35ecc4cfb56d9 (patch) | |
tree | 4abdacc153c6dec2a6ffb38b1f31f1905c946e50 /Doc/text2latex.py | |
parent | c45611d0e33ddd96fb9fffa8dc42a96384d5d270 (diff) | |
download | cpython-6f0132f490d6d091a0e3a57dafa35ecc4cfb56d9.zip cpython-6f0132f490d6d091a0e3a57dafa35ecc4cfb56d9.tar.gz cpython-6f0132f490d6d091a0e3a57dafa35ecc4cfb56d9.tar.bz2 |
* text2latex.py: call main() instead of always processing ext.tex.
* Makefile: added 'ext' to 'all' target
* ext.tex: more changes towards a readable text
* lib4.tex (posix): added set{uid,gid}
* lib2.tex (array): restored doc for typecode and itemsize (which were
there but not visible for dir())
Diffstat (limited to 'Doc/text2latex.py')
-rw-r--r-- | Doc/text2latex.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/text2latex.py b/Doc/text2latex.py index 069155e..93d0587 100644 --- a/Doc/text2latex.py +++ b/Doc/text2latex.py @@ -52,5 +52,4 @@ def process(fi, fo): '\\\\code{\\0}', line) fo.write(line) -#main() -process(open('ext.tex', 'r'), sys.stdout) +main() |