python中的猴子补丁Monkey Patch

python中的猴子补丁Monkey Patch

什么是猴子补丁

the term monkey patch only refers to dynamic modifications of a class or module at runtime, motivated by the intent to patch existing third-party code as a workaround to a bug or feature which does not act as desired

即在运行时对方法 / 类 / 属性 / 功能进行修改,把新的代码作为解决方案代替原有的程序,也就是为其打上补丁。

为什么叫做猴子补丁

The term monkey patch seems to have come from an earlier term, guerrilla patch, which referred to changing code sneakily – and possibly incompatibly with other such patches – at runtime.The word guerrilla, homophonous with gorilla (or nearly so), became monkey, possibly to make the patch sound less intimidating.[1] An alternative etymology is that it refers to “monkeying about” with the code (messing with it).

  • 一种说法杂牌军、游击队的英文发音与猩猩相似,杂牌军、游击队不是原装军队,就像是替补,所以也就演变叫做猴子补丁
  • 另一种说法“monkeying about”有胡闹,顽皮,哄骗的意思,所以叫做猴子补丁

python中使用猴子补丁


class Example():
    def func1(self):
        print(‘我才是原装‘)

def func2(*args):
    print(‘我要取代你‘)

def func3(*args):
    print(‘都给我一边去‘)

instance = Example()
Example.func1 = func2
instance.func1() # 我要取代你
instance.func1 = func3
instance.func1() # 都给我一边去
instance2 = Example()
instance2.func1() # 我要取代你

例子非常简单,func2取代的是类的方法,func3取代的是实例的方法,最终输出都不是原装

其他例子

在使用gevent模块的使用就会遇到猴子补丁

import gevent.monkey
 gevent.monkey.patch_all()

使用猴子补丁的方式,gevent能够修改标准库里面大部分的阻塞式系统调用,包括socket、ssl、threading和 select等模块,而变为协作式运行。也就是通过猴子补丁的monkey.patch_xxx()来将python标准库中模块或函数改成gevent中的响应的具有协程的协作式对象。这样在不改变原有代码的情况下,将应用的阻塞式方法,变成协程式的。
这里参考https://blog.csdn.net/wangjianno2/article/details/51708658

注意问题

在使用猴子补丁的时候同样容易出现问题

  • 当进行版本更新变化的时候,很容易对补丁做出破坏
  • 不知情的情况下对一个位置打两个补丁会造成替换
  • 对于不知道有补丁的人来说可能会对出现的某些情况感到困惑

参考https://en.wikipedia.org/wiki/Monkey_patch

?

原文地址:https://www.cnblogs.com/sfencs-hcy/p/10549898.html

时间: 2024-11-10 15:18:20

python中的猴子补丁Monkey Patch的相关文章

python的猴子补丁monkey patch

monkey patch指的是在运行时动态替换,一般是在startup的时候. 用过gevent就会知道,会在最开头的地方gevent.monkey.patch_all();把标准库中的thread/socket等给替换掉.这样我们在后面使用socket的时候可以跟平常一样使用,无需修改任何代码,但是它变成非阻塞的了. 一个比较实用的例子,很多代码用到 import json,后来发现ujson性能更高,如果觉得把每个文件的import json 改成 import ujson as json成

什么是猴子补丁(monkey patch)

monkey patch指的是在运行时动态替换,一般是在startup的时候. 用过gevent就会知道,会在最开头的地方gevent.monkey.patch_all();把标准库中的thread/socket等给替换掉.这样我们在后面使用socket的时候可以跟平常一样使用,无需修改任何代码,但是它变成非阻塞的了. 之前做的一个游戏服务器,很多地方用的import json,后来发现ujson比自带json快了N倍,于是问题来了,难道几十个文件要一个个把import json改成import

Python Monkey patch猴子补丁

monkey patch (猴子补丁)   用来在运行时动态修改已有的代码,而不需要修改原始代码. 简单的monkey patch 实现:[python] #coding=utf-8 def originalFunc():     print 'this is original function!'      def modifiedFunc():     modifiedFunc=1     print 'this is modified function!'      def main():

Python面试题之“猴子补丁”(monkey patching)指的是什么?这种做法好吗?

“猴子补丁”就是指,在函数或对象已经定义之后,再去改变它们的行为. 举个例子: import datetime datetime.datetime.now = lambda: datetime.datetime(2012, 12, 12) 大部分情况下,这是种很不好的做法 - 因为函数在代码库中的行为最好是都保持一致.打“猴子补丁”的原因可能是为了测试.mock包对实现这个目的很有帮助. 为什么提这个问题? 答对这个问题说明你对单元测试的方法有一定了解.你如果提到要避免“猴子补丁”,可以说明你不

python 高级一点的用法,猴子补丁与元类

好久没更新了,今天想想哪些要记录下的,装饰器什么的就不说了,很熟悉了,记录下. 1.monkey patch. 其实就是动态修改类,包括属性方法等的一种方式. 比如a = A() a.foo = foo之类的,但是怎么在运行前修改呢,类似gevent那样用自己的socket替换, gevent 源码是这样的 from eventlet.green import socket patcher.inject('ftplib', globals(), ('socket', socket)) 然后inj

第二种方式,修改python unittest的执行顺序,使用猴子补丁

1.按照测试用例的上下顺序,而不是按方法的名称的字母顺序来执行测试用例. 之前的文章链接 之前写的,不是猴子补丁,而是要把Test用例的类名传到run里面去执行,与原生的使用有一点区别.现在修改成,用的时候代码与原生unittest完全一模一样,但运行时候使用与原生不同的逻辑. import time import unittest from unittest.main import TestProgram from app.utils.utils_ydf import LogManager c

Python之猴子补丁

1.在运行时,对属性,方法,函数等进行动态替换 2.其目的往往是为了通过替换,修改来增强,扩展原有代码的能力 #test2.py class Person: def get_score(self): ret = {'english':80,'history':100,'chinese':150} return ret #test3.py def get_score(self): return dict(name=self.__class__.__name__,english=100,chines

python 模块会导入几次?猴子补丁为什么可以实现?

一共三个文件 a.py内容是 print('被导入') x = 1 b.py内容是 import a a.x = 2 c.py内容是 import a import b print(a.x) 现在运行c文件,这个结果出乎很多人的意料大部分python人员都猜不对,结果是 1.可以发现a模块被两个地方导入了,但是只打印一次 “被导入”. 2.在c文件里面不管是先导入a还是导入b,打印x的结果都是2. 不光是自己的文件如此,导入库文件也是一样.所以这就是猴子补丁能实现的原因. 2.再多想一下,为什么

python协程初步--gevent库使用以及解释什么是猴子补丁monkey_patch

协程工作的特点是遇到阻塞或耗时的任务时就切换,协程的生存依赖于线程,线程依赖于协程 一个似乎有点问题的例子 import gevent,time def kisscpc(num): for i in range(num): print ("吻了第%s下陈培昌"%(i+1),gevent.getcurrent()) time.sleep(1) def kisscj(num): for i in range(num): print ("吻了第%s下程劲"%(i+1),g