[ctypes-commit] ctypes/docs/manual test-tutorial.py,1.7,1.8
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2006-06-09 18:08:15
|
Update of /cvsroot/ctypes/ctypes/docs/manual In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv20662 Modified Files: test-tutorial.py Log Message: Correct comment. Index: test-tutorial.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/docs/manual/test-tutorial.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** test-tutorial.py 19 May 2006 19:21:59 -0000 1.7 --- test-tutorial.py 9 Jun 2006 18:08:08 -0000 1.8 *************** *** 44,48 **** # Python 2.5a2 formats exceptions differently than before, so we # add IGNORE_EXCEPTION_DETAIL. I do not know if this will be ! # fixed or not. doctest.testfile("tutorial.txt", optionflags=doctest.ELLIPSIS | doctest.IGNORE_EXCEPTION_DETAIL) --- 44,51 ---- # Python 2.5a2 formats exceptions differently than before, so we # add IGNORE_EXCEPTION_DETAIL. I do not know if this will be ! # fixed or not. (Is apparently fixed). ! # ! # ctypes may give localized error messages from the operating ! # syetem, so we need IGNORE_EXCEPTION_DETAIL anyway. doctest.testfile("tutorial.txt", optionflags=doctest.ELLIPSIS | doctest.IGNORE_EXCEPTION_DETAIL) |