Guest User

Untitled

a guest
Jun 13th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. """
  2. Psyco stub: should implement all the external API from psyco.
  3. Taken from the pydev eclipse extension.
  4. """
  5.  
  6. def proxy(func, *args, **kwargs):
  7. return func
  8.  
  9. def bind(func, *args, **kwargs):
  10. return func
  11.  
  12. def unbind(func, *args, **kwargs):
  13. return func
  14.  
  15. def unproxy(func, *args, **kwargs):
  16. return func
  17.  
  18. def full(*args, **kwargs):
  19. pass
  20.  
  21. def log(*args, **kwargs):
  22. pass
  23.  
  24. def runonly(*args, **kwargs):
  25. pass
Add Comment
Please, Sign In to add comment