[Epydoc-commits] SF.net SVN: epydoc: [1200] trunk/epydoc/src/epydoc/test/apidoc.doctest
Brought to you by:
edloper
From: <ed...@us...> - 2006-04-09 20:52:09
|
Revision: 1200 Author: edloper Date: 2006-04-09 13:52:02 -0700 (Sun, 09 Apr 2006) ViewCVS: http://svn.sourceforge.net/epydoc/?rev=1200&view=rev Log Message: ----------- - Updated (exception type for invalid DottedName changed) Modified Paths: -------------- trunk/epydoc/src/epydoc/test/apidoc.doctest Modified: trunk/epydoc/src/epydoc/test/apidoc.doctest =================================================================== --- trunk/epydoc/src/epydoc/test/apidoc.doctest 2006-04-09 20:45:24 UTC (rev 1199) +++ trunk/epydoc/src/epydoc/test/apidoc.doctest 2006-04-09 20:52:02 UTC (rev 1200) @@ -154,13 +154,13 @@ >>> DottedName() Traceback (most recent call last): - ValueError: Empty DottedName + InvalidDottedName: Empty DottedName >>> DottedName('1+2') Traceback (most recent call last): - ValueError: Bad identifier '1+2' + InvalidDottedName: Bad identifier '1+2' >>> DottedName({}) Traceback (most recent call last): - ValueError: Bad identifier {} + InvalidDottedName: Bad identifier {} The one exception is that '??' is treated as if it were a valid python identifier: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |