Skip to content

Instantly share code, notes, and snippets.

@davisagli
Created April 6, 2012 07:42
Show Gist options
  • Save davisagli/2317969 to your computer and use it in GitHub Desktop.
Save davisagli/2317969 to your computer and use it in GitHub Desktop.
Marmoset patching
import inspect
def marmoset_patch(func, s, r):
source = inspect.getsource(func).replace(s, r)
exec source in func.func_globals
func.func_code = func.func_globals[func.__name__].func_code
def foo():
print 1
print 2
print 3
foo()
# 1
# 2
# 3
marmoset_patch(foo, '3', "'ZOMG'")
foo()
# 1
# 2
# ZOMG
@miohtama
Copy link

This technique intrigues me. I look forward to apply it in many real-life scenarios.

@ztane
Copy link

ztane commented Feb 17, 2014

This is so wrong, the right solution is to use AST rewriting!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment