Add testcase for subclassing builtin type and calling native method (broken).

This commit is contained in:
Paul Sokolovsky 2014-01-18 19:10:53 +02:00
parent 1d6fc94c16
commit b31b5e0b5c
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#class mylist(list):
# pass
#l = mylist()
#l.append(1)
#print(l)