From: Finn B. <bc...@us...> - 2002-03-11 14:04:37
|
Update of /cvsroot/jython/bugtests In directory usw-pr-cvs1:/tmp/cvs-serv30952 Added Files: test358.py Log Message: Test for "[ 515894 ] Behaviour of "+=" stm. is different from" --- NEW FILE: test358.py --- """ [ 515894 ] Behaviour of "+=" stm. is different from """ import support a = [1, 2, 3] a += "456" if a != [1, 2, 3, '4', '5', '6']: raise support.TestError('list += not working') |