[Python-checkins] python/dist/src/Doc/tut tut.tex, 1.196.8.11,
1.196.8.12
rhettinger at users.sourceforge.net
rhettinger at users.sourceforge.net
Fri Dec 5 02:21:16 EST 2003
Update of /cvsroot/python/python/dist/src/Doc/tut
In directory sc8-pr-cvs1:/tmp/cvs-serv21088
Modified Files:
Tag: release23-maint
tut.tex
Log Message:
Fix nits
Index: tut.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tut/tut.tex,v
retrieving revision 1.196.8.11
retrieving revision 1.196.8.12
diff -C2 -d -r1.196.8.11 -r1.196.8.12
*** tut.tex 5 Dec 2003 06:38:06 -0000 1.196.8.11
--- tut.tex 5 Dec 2003 07:21:13 -0000 1.196.8.12
***************
*** 4357,4361 ****
>>> import os
>>> dir(os)
! <returns a listi of all module functions>
>>> help(os)
<returns an extensive manual page created from the module's docstrings>
--- 4357,4361 ----
>>> import os
>>> dir(os)
! <returns a list of all module functions>
>>> help(os)
<returns an extensive manual page created from the module's docstrings>
***************
*** 4559,4563 ****
\begin{verbatim}
>>> from timeit import Timer
- >>> dir(Timer)
>>> Timer('t=a; a=b; b=t', 'a=1; b=2').timeit()
0.60864915603680925
--- 4559,4562 ----
More information about the Python-checkins
mailing list