Forked from mahmoudimus/python-monkey-patch-built-ins.py
Created
April 10, 2017 07:39
-
-
Save yetone/b5fca7d9df43048b52d576f6853f4d30 to your computer and use it in GitHub Desktop.
pythonic monkey patching built-in types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# found this from Armin R. on Twitter, what a beautiful gem ;) | |
import ctypes | |
from types import DictProxyType, MethodType | |
# figure out side of _Py_ssize_t | |
if hasattr(ctypes.pythonapi, 'Py_InitModule4_64'): | |
_Py_ssize_t = ctypes.c_int64 | |
else: | |
_Py_ssize_t = ctypes.c_int | |
# regular python | |
class _PyObject(ctypes.Structure): | |
pass | |
_PyObject._fields_ = [ | |
('ob_refcnt', _Py_ssize_t), | |
('ob_type', ctypes.POINTER(_PyObject)) | |
] | |
# python with trace | |
if object.__basicsize__ != ctypes.sizeof(_PyObject): | |
class _PyObject(ctypes.Structure): | |
pass | |
_PyObject._fields_ = [ | |
('_ob_next', ctypes.POINTER(_PyObject)), | |
('_ob_prev', ctypes.POINTER(_PyObject)), | |
('ob_refcnt', _Py_ssize_t), | |
('ob_type', ctypes.POINTER(_PyObject)) | |
] | |
class _DictProxy(_PyObject): | |
_fields_ = [('dict', ctypes.POINTER(_PyObject))] | |
def reveal_dict(proxy): | |
if not isinstance(proxy, DictProxyType): | |
raise TypeError('dictproxy expected') | |
dp = _DictProxy.from_address(id(proxy)) | |
ns = {} | |
ctypes.pythonapi.PyDict_SetItem(ctypes.py_object(ns), | |
ctypes.py_object(None), | |
dp.dict) | |
return ns[None] | |
def get_class_dict(cls): | |
d = getattr(cls, '__dict__', None) | |
if d is None: | |
raise TypeError('given class does not have a dictionary') | |
if isinstance(d, DictProxyType): | |
return reveal_dict(d) | |
return d | |
def test(): | |
from random import choice | |
d = get_class_dict(str) | |
d['foo'] = lambda x: ''.join(choice((c.upper, c.lower))() for c in x) | |
print "and this is monkey patching str".foo() | |
if __name__ == '__main__': | |
test() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment