|
...
|
...
|
@@ -52,7 +52,7 @@ class Do(): |
|
|
|
def three(self, x, y, z):
|
|
|
|
print(locals())
|
|
|
|
|
|
|
|
def createGroup(self,message,user_ids):
|
|
|
|
def createGroup(self, message, user_ids):
|
|
|
|
print(locals())
|
|
|
|
|
|
|
|
|
|
...
|
...
|
@@ -65,7 +65,7 @@ if __name__ == '__main__': |
|
|
|
f1 = join(d.two, {"x": 'x1', "y": 'y2', 'z': 'z3'})
|
|
|
|
f2 = join(d.one, 'x2')
|
|
|
|
|
|
|
|
f3 = join(d.createGroup,{"message":"12333","user_ids":[1,2,3,4,5]})
|
|
|
|
f3 = join(d.createGroup, {"message": "12333", "user_ids": [1, 2, 3, 4, 5]})
|
|
|
|
|
|
|
|
t.submit(**f1)
|
|
|
|
t.submit(**f2)
|
...
|
...
|
|