From: Finn B. <bc...@us...> - 2001-10-30 19:01:14
|
Update of /cvsroot/jython/bugtests In directory usw-pr-cvs1:/tmp/cvs-serv648 Added Files: test328.py Log Message: Test for [ #462280 ] builtin method as a class variable --- NEW FILE: test328.py --- """ [ #462280 ] builtin method as a class variable """ import support class Foo: mylistIndex = ['a', 'b', 'c', 'd', 'e'].index a = Foo() if a.mylistIndex.__self__ != ['a', 'b', 'c', 'd', 'e']: raise support.TestError('Builtin func with wrong self') assert a.mylistIndex('c') == 2 assert Foo.mylistIndex('c') == 2 |