Skip to content

Instantly share code, notes, and snippets.

@squeaky-pl
Created April 9, 2014 23:24
Show Gist options
  • Save squeaky-pl/10329421 to your computer and use it in GitHub Desktop.
Save squeaky-pl/10329421 to your computer and use it in GitHub Desktop.
/usr/bin/python -c "from inspect import ismethod; print repr(object.__delattr__); print ismethod(object.__delattr__)"
<slot wrapper '__delattr__' of 'object' objects>
False
pypy -c "from inspect import ismethod; print repr(object.__delattr__); print ismethod(object.__delattr__)"
<unbound method object.__delattr__>
True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment