From: Finn B. <bc...@us...> - 2001-10-27 22:21:44
|
Update of /cvsroot/jython/bugtests In directory usw-pr-cvs1:/tmp/cvs-serv18668 Added Files: test314c.py Log Message: Added dependent file. --- NEW FILE: test314c.py --- import string s = "elem1 elem2" try: (a, b, c) = string.split(s) (d, e, f) = string.split(s) pass except ValueError: pass else: print support.TestError("Should raise a ValueError") |