0
votes
difference between abstract class and interface in Python
In general, interfaces are used only in languages that use the single-inheritance class model. In these single-inheritance languages, interfaces are typically used if any class could use a particul …
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):
…
3
votes
OpenGL in Python with Snow Leopard?
I've used PyOpenGL 3.0.0 quite successfully on Snow Leopard. It uses ctypes, so it should be making 64-bit calls if those li …
