Tagged Questions
Monkeypatching in dynamic languages refers extending or modifying run-time behavior without modifying the source code.
49
votes
10answers
7k views
Adding a Method to an Existing Object
I've read that it is possible to add a method to an existing object (e.g. not in the class definition) in python, I think this is called Monkey Patching (or in some cases Duck Punching). I understand ...
21
votes
8answers
2k views
Monkey-patching Vs. S.O.L.I.D. principles?
I'm slowly moving from PHP5 to Python on some personal projects, and I'm currently loving the experience. Before choosing to go down the Python route I looked at Ruby. What I did notice from the ruby ...
14
votes
7answers
6k views
What does 'Monkey Patching' exactly Mean in Ruby?
According to Wikipedia, a monkey patch is:
a way to extend or modify the runtime
code of dynamic languages [...]
without altering the original source
code.
The following statement from the ...
13
votes
4answers
2k views
How does one monkey patch a function in python?
I'm having trouble replacing a function from a different module with another function and it's driving me crazy.
Let's say I have a module bar.py that looks like this:
from a_package.baz import ...
12
votes
7answers
1k views
How can I monkey-patch an instance method in Perl?
I'm trying to monkey-patch (duck-punch :-) a LWP::UserAgent instance, like so:
sub _user_agent_get_basic_credentials_patch {
return ($username, $password);
}
my $agent = LWP::UserAgent->new();
...
11
votes
4answers
1k views
Is it acceptable practice to patch Ruby's base classes, such as Fixnum?
I am still very new to Ruby (reading through the Pickaxe and spending most of my time in irb), and now that I know it's possible to patch classes in Ruby, I'm wondering when it's acceptable to do so, ...
10
votes
2answers
236 views
How does extending classes (Monkey Patching) work in Python?
class Foo(object):
pass
foo = Foo()
def bar(self):
print 'bar'
Foo.bar = bar
foo.bar() #bar
Coming from JavaScript, if a "class" prototype was augmented with a certain attribute. It is known ...
8
votes
3answers
78 views
Can a Javascript Array or Object be overridden to be callable?
I want to figure out if Array[] and Object[] can be replaced by Array() and Object(). Can a function prototype be stuck into arrays or objects prototype chain to make them callable. Basically I am ...
8
votes
3answers
179 views
Python method lookup, static vs. instance
Until like one hour ago, I was convinced that in python Foo ().bar () was nothing more than a short hand for Foo.bar (Foo () ) which passes the instance as first parameter. In this example the last ...
8
votes
2answers
3k views
Add functionality to Django FlatPages without changing the original Django App
I would like to add a field to the Django FlatPage database model, but I do not really know how to extend this without editing the original application.
What I want to do is to add the following ...
8
votes
8answers
2k views
If monkey patching is permitted in both Ruby and Python, why is it more controversial in Ruby?
In many discussions I have heard about Ruby in which people have expressed their reservations about the language, the issue of monkey patching comes up as one of their primary concerns.
However, I ...
7
votes
4answers
219 views
Monkey patch __del__ to new function
For specific debugging purposes I'd like to wrap the del function of an arbitrary object to perform extra tasks like write the last value of the object to a file.
Ideally I want to write
...
7
votes
4answers
422 views
Is “monkey patching” really that bad?
Some languages like Ruby and JavaScript have open classes which allow you to modify interfaces of even core classes like numbers, strings, arrays, etc. Obviously doing so could confuse others who are ...
7
votes
6answers
296 views
Do Ruby's “Open Classes” break encapsulation?
In Ruby, programmers are allowed to change predefined classes. So a really bad programmer could do something like:
class String
def ==(other)
return true
end
end
Obviously, almost no one ...
7
votes
2answers
475 views
PowerShell, Extension Methods, and Monkey Patching
Is it possible to write extension method in PowerShell? or to bolt a new method on top of an existing type like [string] live at runtime?
7
votes
9answers
849 views
Is there any way to modify the value of a `private static final` field in java from outside the class? (Or, I need to monkey patch an external library)
I know this is normally rather stupid, but don't shoot me before reading the question. I promise I have a good reason for needing to do this :)
It's possible to modify regular private fields in java ...
6
votes
2answers
1k views
When monkey patching a method, can you call the overridden method from the new implementation
Say I am monkey patching a method in a class, how could I call the overriden method from the overriding method? i.e. something a bit like super
e.g.
class Foo
def bar()
"Hello"
end
end
...
6
votes
5answers
316 views
How does Smalltalk deal with monkeypatching?
I'm a Ruby coder. For me, monkeypatching is to change, at runtime, classes or modules methods in an external project. What I'm interested in, is what mechanism you have in place that will protect you ...
6
votes
3answers
337 views
[] method of Ruby String
When I reading source code of Beast, I found a lot of code like this:
<%= 'Password'[:password_title] %>
It seems like a call to [] method with Symbol as input parameter to a String to me, ...
6
votes
2answers
311 views
How do I do monkeypatching in python?
I've had to do some introspection in python and it wasn't pretty:
name = sys._getframe(1).f_code
name = "%s:%d %s()" %(os.path.split(name.co_filename)[1],name.co_firstlineno,name.co_name)
...
5
votes
4answers
340 views
To (monkey)patch or not to (monkey)patch, that is the question
I was talking to a colleague about one rather unexpected/undesired behavior of some package we use. Although there is an easy fix (or at least workaround) on our end without any apparent side effect, ...
5
votes
4answers
562 views
Alternatives to monkey patching core classes
I am still new to Ruby and basically just writing my first micro-program after finishing Cooper's book. I was pointed to the direction of avoiding monkey patching but the problem is I don't know what ...
5
votes
5answers
849 views
To monkey-patch or not to?
This is more general question then language-specific, altho I bumped into this problem while playing with python ncurses module. I needed to display locale characters and have them recognized as ...
4
votes
1answer
169 views
Patch routine call in delphi
I want to patch a routine call to be able to handle it myself with some modifications.
I am writing a resource loader. I want to patch the Delphi's LoadResourceModule and
InitInheritedComponent ...
4
votes
4answers
381 views
How to monkey-patch code that gets auto-loaded in Rails?
I'm monkey-patching a Rails engine with something like:
SomeClass.class_eval do
# ...
end
The first time I hit the web site, on development mode at least, it works, but the second time it's like ...
4
votes
1answer
417 views
Monkey patching a Django form class?
Given a form class (somewhere deep in your giant Django app)..
class ContactForm(forms.Form):
name = ...
surname = ...
And considering you want to add another field to this form without ...
4
votes
2answers
241 views
monkey patching time.time() in python
I've an application where, for testing, I need to replace the time.time() call with a specific timestamp, I've done that in the past using ruby
(code available here: ...
4
votes
5answers
1k views
Django and monkey patching issue
I have recently started experimenting with Django for some web applications in my spare time. While designing the data model for one, I came across the dilemma of using inheritance to define a user of ...
4
votes
1answer
386 views
Patching classes in Python
Suppose I have a Python class that I want to add an extra property to.
Is there any difference between
import path.MyClass
MyClass.foo = bar
and using something like :
import path.MyClass
...
3
votes
1answer
89 views
monkey patching Object produces strange results
I was testing an idea about adding a to_hash feature to all objects (I'm not saying this is a good idea, just an experiment). When I came across an odd issue, where IO stopped working.
#lib/object.rb
...
3
votes
1answer
68 views
py2app'ed application runs properly in alias mode but not when bundled
I have a pyobjc app running in a 32-bit only python build that makes use of the gevent library. Everything works great in py2app'ed alias mode, but once I build an app bundle, the gevent module can't ...
3
votes
4answers
129 views
Un-monkey patching a class/method in Ruby
I'm trying to unit test a piece of code that I've written in Ruby that calls File.open. To mock it out, I monkeypatched File.open to the following:
class File
def self.open(name, &block)
if ...
3
votes
1answer
78 views
python3: bind method to class instance with .__get__(), it works but why?
I know if you want to add a method to a class instance you can't do a simple assignment like this:
>>> def print_var(self): # method to be added
print(self.var)
>>> class ...
3
votes
2answers
81 views
Python: add a parent class to a class after initial evaluation
General Python Question
I'm importing a Python library (call it animals.py) with the following class structure:
class Animal(object): pass
class Rat(Animal): pass
class Bat(Animal): pass
class ...
3
votes
2answers
492 views
pymongo + gevent: throw me a banana and just monkey_patch?
Quickie here that needs more domain expertise on pymongo than I have right now:
Are the "right" parts of the pymongo driver written in python for me to call gevent monkey_patch() and successfully ...
3
votes
2answers
104 views
Safely adding a `sum` method to Array class
I'm doing a lot of array summing in my code, so I'm thinking of monkey-patching the Array class to include a sum method (that sums all the elements in the array):
class Array
def sum
...
3
votes
1answer
138 views
How to monkey patch a generic type tag function table
I found it interesting to read on one of the ways that you can do functional dynamic dispatch in sicp - using a table of type tag + name -> functions that you can fetch from or add to.
I was ...
3
votes
3answers
180 views
Why is it frowned upon to modify javascript object's prototypes?
I've come across a few comments here and there about how it's frowned upon to modify a javascript object's prototype? I personally don't see how it could be a problem. For instance extending the Array ...
3
votes
1answer
403 views
How to monkeypatch Ruby properly?
I'm trying to monkeypatch a line in Net class in the standard library. I created a file called patches.rb into the lib folder of the project and added this
module Net
class HTTP < Protocol
...
3
votes
6answers
304 views
What is monkey-patching?
I am trying to understand this definition. Is that something like methods/operators overloading or delegating? Does it have anything common with these things?
3
votes
2answers
447 views
Monkey patched django auth's login, now its tests fail
My app seeks to wrap the django.contrib.auth.views login and logout views with some basic auditing/logging capabilities. I'm following the prescription as described in the django-axes project, and in ...
3
votes
1answer
627 views
How do I monkey-patch ruby's URI.parse method
Some popular blog sites typically use square brackets in their URLs but ruby's built-in URI.parse() method chokes on them, raising a nasty exception, as per:
...
3
votes
4answers
454 views
C# monkey patching - is it possible?
Is it possible to write a C# assembly which when loaded will inject a method into a class from another assembly? If yes, will the injected method be available from languages using DLR, like ...
3
votes
1answer
900 views
Can I replace or modify a function on a jQuery UI widget? How? (Monkey Patching)
If I want to tweak some of the capability of a jQuery UI object, by replacing one of the functions, how would I go about doing that?
Example: suppose I wanted to modify the way the jQuery ...
3
votes
2answers
259 views
“Extend” the “string” table - how to do it? Is it even a good idea?
I am developing a Lua library in which I needed to uppercase the first letter of a given string. Hence I created the following function:
local capitalize = function(s)
return string.gsub (s,
...
3
votes
3answers
253 views
How can you do a safe, backwards-compatible “reverse-monkeypatch” in Ruby?
If your coworker "opens" ("monkeypatches") a class in Ruby and redefines some important functionality that you need to use, how do you access that original pre-monkeypatched functionality without ...
3
votes
3answers
1k views
Is it possible to replace (monkeypatch) PHP functions?
You can do this in Python, but is it possible in PHP?
>>> def a(): print 1
...
>>> def a(): print 2
...
>>> a()
2
e.g.:
<? function var_dump() {} ?>
Fatal error: ...
3
votes
3answers
346 views
Does Perl monkey-patching allow you to see the patched package's scope?
I'm monkey patching a package using a technique given at the beginning of "How can I monkey-patch an instance method in Perl?". The problem that I'm running into is that the original subroutine used a ...
2
votes
1answer
85 views
Monkey patching 'datetime' produces strange results
I'm trying to make one of my libraries compatible with Python 2.6. It uses the method datetime.timedelta.total_seconds which was added in 2.7, so to make it work with 2.6, I wanted to monkey patch it ...
2
votes
1answer
62 views
Isolating monkey patches in a ruby gem?
I've noticed that a few ruby gems that I use ship with a folder named ext or core_ext which contains a set of monkey patches to the core library that is used in their code. However, when I require ...