[Python-checkins] python/dist/src/Lib/test test_doctest.py, 1.42, 1.43

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Sat Sep 11 19:33:30 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24542/Lib/test

Modified Files:
	test_doctest.py 
Log Message:
Recover from inspect.getmodule() changes.  It returns a module for
functions and methods now, including functions defined inside doctests
in test_doctest.py's recursive doctest'ing.


Index: test_doctest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_doctest.py,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- test_doctest.py	4 Sep 2004 17:21:02 -0000	1.42
+++ test_doctest.py	11 Sep 2004 17:33:27 -0000	1.43
@@ -387,8 +387,8 @@
 
     >>> def no_examples(v):
     ...     ''' no doctest examples '''
-    >>> finder.find(no_examples)
-    [<DocTest no_examples from None:1 (no examples)>]
+    >>> finder.find(no_examples) # doctest: +ELLIPSIS
+    [<DocTest no_examples from ...:1 (no examples)>]
 
 Finding Tests in Classes
 ~~~~~~~~~~~~~~~~~~~~~~~~
@@ -665,6 +665,7 @@
     ...     '''
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> doctest.DocTestRunner(verbose=True).run(test)
+    ... # doctest: +ELLIPSIS
     Trying:
         x = 12
     Expecting nothing
@@ -674,7 +675,7 @@
     Expecting:
         14
     **********************************************************************
-    Line 3, in f
+    File ..., line 4, in f
     Failed example:
         print x
     Expected:
@@ -790,7 +791,7 @@
     >>> doctest.DocTestRunner(verbose=False).run(test)
     ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 3, in f
+    File ..., line 4, in f
     Failed example:
         print 'pre-exception output', x/0
     Exception raised:
@@ -825,7 +826,7 @@
     >>> doctest.DocTestRunner(verbose=False).run(test)
     ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 3, in f
     Failed example:
         raise ValueError, 'message'
     Expected:
@@ -862,7 +863,7 @@
     >>> doctest.DocTestRunner(verbose=False).run(test)
     ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 3, in f
     Failed example:
         raise ValueError, 'message' #doctest: +IGNORE_EXCEPTION_DETAIL
     Expected:
@@ -886,7 +887,7 @@
     >>> doctest.DocTestRunner(verbose=False).run(test)
     ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 3, in f
     Failed example:
         1/0
     Exception raised:
@@ -918,8 +919,9 @@
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> flags = doctest.DONT_ACCEPT_TRUE_FOR_1
     >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 1, in f
+    File ..., line 2, in f
     Failed example:
         True
     Expected:
@@ -943,8 +945,9 @@
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> flags = doctest.DONT_ACCEPT_BLANKLINE
     >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 1, in f
+    File ..., line 2, in f
     Failed example:
         print "a\n\nb"
     Expected:
@@ -966,8 +969,9 @@
     >>> # Without the flag:
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> doctest.DocTestRunner(verbose=False).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 1, in f
+    File ..., line 2, in f
     Failed example:
         print 1, 2, 3
     Expected:
@@ -997,8 +1001,9 @@
     >>> # Without the flag:
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> doctest.DocTestRunner(verbose=False).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 1, in f
+    File ..., line 2, in f
     Failed example:
         print range(15)
     Expected:
@@ -1052,8 +1057,9 @@
     >>> # Without the flag:
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> doctest.DocTestRunner(verbose=False).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 3, in f
     Failed example:
         print '\n'.join('abcdefg')
     Expected:
@@ -1078,8 +1084,9 @@
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> flags = doctest.REPORT_UDIFF
     >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 3, in f
     Failed example:
         print '\n'.join('abcdefg')
     Differences (unified diff with -expected +actual):
@@ -1102,8 +1109,9 @@
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> flags = doctest.REPORT_CDIFF
     >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 3, in f
     Failed example:
         print '\n'.join('abcdefg')
     Differences (context diff with expected followed by actual):
@@ -1139,8 +1147,9 @@
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> flags = doctest.REPORT_NDIFF
     >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 3, in f
     Failed example:
         print "a b  c d e f g h i   j k l m"
     Differences (ndiff with -expected +actual):
@@ -1169,8 +1178,9 @@
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> flags = doctest.REPORT_ONLY_FIRST_FAILURE
     >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 4, in f
+    File ..., line 5, in f
     Failed example:
         print 2 # first failure
     Expected:
@@ -1182,6 +1192,7 @@
 However, output from `report_start` is not supressed:
 
     >>> doctest.DocTestRunner(verbose=True, optionflags=flags).run(test)
+    ... # doctest: +ELLIPSIS
     Trying:
         print 1 # first success
     Expecting:
@@ -1192,7 +1203,7 @@
     Expecting:
         200
     **********************************************************************
-    Line 4, in f
+    File ..., line 5, in f
     Failed example:
         print 2 # first failure
     Expected:
@@ -1222,7 +1233,7 @@
     >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
     ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 4, in f
+    File ..., line 5, in f
     Failed example:
         raise ValueError(2) # first failure
     Exception raised:
@@ -1248,8 +1259,9 @@
     ...     '''
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> doctest.DocTestRunner(verbose=False).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 2, in f
     Failed example:
         print range(10)       # should fail: no ellipsis
     Expected:
@@ -1272,8 +1284,9 @@
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> doctest.DocTestRunner(verbose=False,
     ...                       optionflags=doctest.ELLIPSIS).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 6, in f
+    File ..., line 6, in f
     Failed example:
         print range(10)       # doctest: -ELLIPSIS
     Expected:
@@ -1297,8 +1310,9 @@
     ...     '''
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> doctest.DocTestRunner(verbose=False).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 2, in f
     Failed example:
         print range(10)       # Should fail: no ellipsis
     Expected:
@@ -1306,7 +1320,7 @@
     Got:
         [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
     **********************************************************************
-    Line 8, in f
+    File ..., line 8, in f
     Failed example:
         print range(10)       # Should fail: no ellipsis
     Expected:
@@ -1327,8 +1341,9 @@
     ...     '''
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> doctest.DocTestRunner(verbose=False).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 2, in f
     Failed example:
         print range(10)       # Should fail
     Expected:
@@ -1346,8 +1361,9 @@
     ...     '''
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> doctest.DocTestRunner(verbose=False).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 2, in f
     Failed example:
         print range(10)       # Should fail
     Expected:
@@ -1365,8 +1381,9 @@
     ...     '''
     >>> test = doctest.DocTestFinder().find(f)[0]
     >>> doctest.DocTestRunner(verbose=False).run(test)
+    ... # doctest: +ELLIPSIS
     **********************************************************************
-    Line 2, in f
+    File ..., line 2, in f
     Failed example:
         print range(10)       # Should fail
     Expected:



More information about the Python-checkins mailing list