Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7a2dba2

Browse files
committed
* ext.tex: documentation for extending, reference counts, and embedding
(formerly ../misc/{EXTENDING,REFCNT,EMBEDDING}). Also affects Makefile. * text2latex.py: script to do part of the conversion from an plain ASCI text file (in my particular style) to LaTeX. (Chapter/section/subsection headers, and verbatim sections.) * partparse.py, texipre.dat, fix.el, Makefile: Minor cleanup of latex -> info conversion process (at least it works again, and with less debugging output). Removed fix.sh. * lib1.tex (section{Built-in Functions}): adapt description of str() and repr() to new situation. * lib3.tex (Module os): added exec*() variants. * lib3.tex (Module posix): added execve(). * lib2.tex (Module array): documented reality; remove typecode and itemsize, add byteswap, rename read/write to fromfile/tofile, and re-alphabetized. * lib1.tex (Built-in Functions): renamed bagof() to filter().
1 parent c600411 commit 7a2dba2

13 files changed

Lines changed: 1687 additions & 161 deletions

File tree

Doc/Makefile

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,42 @@ lib:
2626
latex lib
2727
dvips lib >lib.ps
2828

29+
ext:
30+
touch ext.ind
31+
latex ext
32+
./fix_hack ext.idx
33+
makeindex ext
34+
latex ext
35+
dvips ext >ext.ps
36+
2937
qua:
3038
latex qua
3139
bibtex qua
3240
latex qua
3341
latex qua
3442
dvips qua >qua.ps
3543

36-
libinfo:
37-
@echo This may take a while...
38-
python -c 'import partparse; partparse.main()' lib[1-5].tex
39-
sh fix.sh
44+
lib.texi: lib1.tex lib2.tex lib3.tex lib4.tex lib5.tex texipre.dat texipost.dat
45+
python partparse.py -o @lib.texi lib[1-5].tex
46+
mv @lib.texi lib.texi
47+
48+
.PRECIOUS: lib.texi
49+
50+
python-lib.info: lib.texi
51+
emacs -batch -l fix.el -f save-buffer -kill
52+
makeinfo +footnote-style end +fill-column 72 +paragraph-indent 0 \
53+
lib.texi
54+
55+
lib.info: python-lib.info
4056

41-
# This target is very local to CWI... (first make libinfo)
42-
libwww:
43-
texi2html -d @out.texi /usr/local/ftp.cwi.nl/pub/www/texinfo/python
57+
# This target is very local to CWI...
58+
libwww: lib.texi
59+
texi2html -d lib.texi /usr/local/ftp.cwi.nl/pub/www/texinfo/python
4460

4561
clean:
4662
rm -f @* *~ *.aux *.idx *.ilg *.ind *.log *.toc *.blg *.bbl *.pyc
4763
# Sources: .tex, .bib, .sty
48-
# Useful results: .dvi, .ps
64+
# Useful results: .dvi, .ps, .texi, .info
4965

5066
clobber: clean
51-
rm -f *.dvi *.ps *.info *.info-[0-9]*
67+
rm -f *.dvi *.ps *.texi *.info *.info-[0-9]*

0 commit comments

Comments
 (0)