1
vote
If monkey patching is permitted in both Ruby and Python, why is it more controversial in Ruby?
If you want to do some monkey patching in Python, it is relatively easy, as long as you are not modifying a built-in type (int, float, str).
class SomeClass:
def foo(self):
…
