Skip to content

Commit d3623af

Browse files
author
刘宇辉
committed
add fruitful function
1 parent 7905860 commit d3623af

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

thinkpython/tex-zh/Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ PDFFLAGS = -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress \
1818

1919
all: book.tex
2020
xelatex book
21-
makeindex book
21+
makeindex book.idx
2222
xelatex book
23+
make clean
24+
2325
# dvips -t letter -Ppdf -o thinkpython.ps book
2426
# dvips -T 6.75in,9.25in -Ppdf -o thinkpython.ps book
2527
# dvips -t b5 -Ppdf -o thinkpython.ps book
@@ -53,7 +55,7 @@ distrib:
5355
chmod -R o+r $(DEST)/*
5456

5557
clean:
56-
rm -f *~ *.aux *.log *.dvi *.idx *.ilg *.ind *.toc *.pdf
58+
rm -f *~ *.aux *.log *.dvi *.idx *.ilg *.ind *.toc
5759

5860

5961

thinkpython/tex-zh/book.pdf

-4 Bytes
Binary file not shown.

thinkpython/tex-zh/en_cn.translation

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,7 @@ reverse lookup 颠倒查询
99
#Python2.7中新引入了OrderDict。颠倒查询,虽然听起来名字有点“非主流”
1010
#但是却恰如其分的表达了对字典的项进行逆向查询。
1111

12+
fruitful functions 结果函数
13+
#这里的结果就是结果实的意思,结合上下文就是带有返回值的(不是默认状态
14+
#下的void)的函数。
1215

thinkpython/tex-zh/part/chapter03.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ \section{Stack diagrams 堆栈示意图}
532532

533533
在{\tt traceback}中的函数顺序和在堆栈图中的框图是一样的。正在运行的函数在最底部。
534534

535-
\section{卓有成效的函数和void 函数}
535+
\section{“结果”函数和void 函数}
536536

537537
\index{fruitful function 卓有成效的函数}
538538
\index{void function void 函数}

0 commit comments

Comments
 (0)