Skip to content

Instantly share code, notes, and snippets.

@dbbbit
Last active August 29, 2015 14:25
Show Gist options
  • Save dbbbit/0a7ebaa708d0d6c7fc36 to your computer and use it in GitHub Desktop.
Save dbbbit/0a7ebaa708d0d6c7fc36 to your computer and use it in GitHub Desktop.
from origin import A
A.p = "test"
class A:
@classmethod
def p(cls):
return "hello"
import monkey
from origin import A
# 需要保持 A.p 为原来的函数
print A.p()
# 需要保证 patch 只在 monkey 模块生效
print monkey.A.p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment