blob: 0fbb59cd15891bebecef1886155b133bf406121e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# pylint: disable=R0903
'''Test that a function is considered a method when looked up through a class.
'''
from __future__ import print_function
class Clazz(object):
'test class'
def __init__(self, value):
self.value = value
def func(arg1, arg2):
'function that will be used as a method'
return arg1.value + arg2
Clazz.method = func
print(Clazz(1).method(2))
|