Comment on Python 3.3.0 releasedparentComments−duskwuff13y> Another Python feature that makes upgrades hard is monkeypatchingYou can't alter core classes (like str) in Python, and patching classes from other modules is considered a really weird, rare, bad practice.
Comments
> Another Python feature that makes upgrades hard is monkeypatching
You can't alter core classes (like str) in Python, and patching classes from other modules is considered a really weird, rare, bad practice.