Skip to content

Instantly share code, notes, and snippets.

@ChristopherMacGown
Created December 4, 2011 00:28
Show Gist options
  • Save ChristopherMacGown/1428618 to your computer and use it in GitHub Desktop.
Save ChristopherMacGown/1428618 to your computer and use it in GitHub Desktop.
callable.py
>>> def callable(p):
... return '__call__' in dir(p)
...
>>> callable('abc')
False
>>> callable(callable)
True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment