File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed
Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,10 @@ PDFFLAGS = -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress \
1818
1919all : 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
5557clean :
56- rm -f * ~ * .aux * .log * .dvi * .idx * .ilg * .ind * .toc * .pdf
58+ rm -f * ~ * .aux * .log * .dvi * .idx * .ilg * .ind * .toc
5759
5860
5961
Original file line number Diff line number Diff line change @@ -9,4 +9,7 @@ reverse lookup 颠倒查询
99#Python2.7中新引入了OrderDict。颠倒查询,虽然听起来名字有点“非主流”
1010#但是却恰如其分的表达了对字典的项进行逆向查询。
1111
12+ fruitful functions 结果函数
13+ #这里的结果就是结果实的意思,结合上下文就是带有返回值的(不是默认状态
14+ #下的void)的函数。
1215
Original file line number Diff line number Diff 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 函数}
You can’t perform that action at this time.
0 commit comments