[Python-checkins] python/dist/src/Doc/lib libdoctest.tex, 1.18,
1.19 liboperator.tex, 1.28, 1.29 libpprint.tex, 1.15,
1.16 libweakref.tex, 1.20, 1.21
loewis at users.sourceforge.net
loewis at users.sourceforge.net
Thu Nov 27 14:48:05 EST 2003
- Previous message: [Python-checkins] python/dist/src/Doc/lib libdoctest.tex, 1.17.8.1,
1.17.8.2 liboperator.tex, 1.27.12.1, 1.27.12.2 libpprint.tex,
1.15, 1.15.18.1 libweakref.tex, 1.19.8.2, 1.19.8.3
- Next message: [Python-checkins] python/dist/src/Mac/OSX/Dist README.txt, 1.1,
1.1.10.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv4619
Modified Files:
libdoctest.tex liboperator.tex libpprint.tex libweakref.tex
Log Message:
Patch #849350: Update to document bool return values. Backported to 2.3.
Index: libdoctest.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libdoctest.tex,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** libdoctest.tex 12 Aug 2003 00:01:15 -0000 1.18
--- libdoctest.tex 27 Nov 2003 19:48:03 -0000 1.19
***************
*** 412,416 ****
\begin{verbatim}
>>> foo() == {"Hermione": "hippogryph", "Harry": "broomstick"}
! 1
>>>
\end{verbatim}
--- 412,416 ----
\begin{verbatim}
>>> foo() == {"Hermione": "hippogryph", "Harry": "broomstick"}
! True
>>>
\end{verbatim}
Index: liboperator.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liboperator.tex,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** liboperator.tex 2 Nov 2003 09:50:56 -0000 1.28
--- liboperator.tex 27 Nov 2003 19:48:03 -0000 1.29
***************
*** 250,254 ****
>>> o = C()
>>> operator.isMappingType(o)
! 1
\end{verbatim}
--- 250,254 ----
>>> o = C()
>>> operator.isMappingType(o)
! True
\end{verbatim}
Index: libpprint.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpprint.tex,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** libpprint.tex 2 Apr 2002 05:08:35 -0000 1.15
--- libpprint.tex 27 Nov 2003 19:48:03 -0000 1.16
***************
*** 112,116 ****
\begin{verbatim}
>>> pprint.isreadable(stuff)
! 0
\end{verbatim}
\end{funcdesc}
--- 112,116 ----
\begin{verbatim}
>>> pprint.isreadable(stuff)
! False
\end{verbatim}
\end{funcdesc}
Index: libweakref.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libweakref.tex,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** libweakref.tex 21 Nov 2003 22:20:57 -0000 1.20
--- libweakref.tex 27 Nov 2003 19:48:03 -0000 1.21
***************
*** 187,191 ****
>>> o2 = r()
>>> o is o2
! 1
\end{verbatim}
--- 187,191 ----
>>> o2 = r()
>>> o is o2
! True
\end{verbatim}
- Previous message: [Python-checkins] python/dist/src/Doc/lib libdoctest.tex, 1.17.8.1,
1.17.8.2 liboperator.tex, 1.27.12.1, 1.27.12.2 libpprint.tex,
1.15, 1.15.18.1 libweakref.tex, 1.19.8.2, 1.19.8.3
- Next message: [Python-checkins] python/dist/src/Mac/OSX/Dist README.txt, 1.1,
1.1.10.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Python-checkins
mailing list