added a few basic number types

This commit is contained in:
Wenzel Jakob
2015-08-28 17:49:15 +02:00
parent 43dbdfd0e7
commit 7b8e032c26
3 changed files with 12 additions and 5 deletions

View File

@@ -29,8 +29,8 @@ from example import Example5
def func1():
print('Callback function 1 called!')
def func2(a, b, c):
print('Callback function 2 called : ' + str(a) + ", " + str(b) + ", "+ str(c))
def func2(a, b, c, d):
print('Callback function 2 called : ' + str(a) + ", " + str(b) + ", " + str(c) + ", "+ str(d))
return c
class MyCallback(Example5):