标签: python file io
我想为任何给定的python应用程序更改内置文件I / O方法,而不必修改其代码。这可能吗?
也许使用Python的subprocess?
subprocess
例如,我希望文件对象的read()方法实际上调用我的custom_read()方法,但不必在调用read()的程序中更改任何代码。
read()
custom_read()