tests/basics: Add test for assignment of attribute to bound method.

This commit is contained in:
Damien George 2017-01-20 13:17:22 +11:00
parent 4d1ba482f5
commit 1639200e57
1 changed files with 6 additions and 0 deletions

View File

@ -22,3 +22,9 @@ print(m(1))
# bound method with lots of extra args
m = A().h
print(m(1, 2, 3, 4, 5, 6))
# can't assign attributes to a bound method
try:
A().f.x = 1
except AttributeError:
print('AttributeError')