|
|
|
|
|
by dagw
5003 days ago
|
|
Another Python feature that makes upgrades hard is monkeypatching Although possible, it's my understanding that monkey patching is greatly frowner upon in the python community. I've been programming python on and off for a decade and can only think one time when I've monkey patched something, and I felt really bad about it. The only library that I know of that uses monkey patching is gevent, and it doesn't do it by default but only if you've explicitly told it to. |
|