Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. import sys
  2.  
  3. class CannotResolve(Exception):
  4. pass
  5.  
  6. class ZXsx(object):
  7. emess = "Can't found appropriate signature of func %s() for call with" + \
  8. " params %r"
  9. def __init__(self,name):
  10. self.function_map = {}
  11. self.default = None
  12. self.name = name
  13. def __call__(self,*dt):
  14.  
  15. cls = tuple(map(type,dt))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement