1
vote
6answers
85 views
Setting Python path while developing library module
I am developing a library and an application that uses the library in Python 2.6. I've placed a "mylib.pth" file in "site-packages" so that I can import mylib from within my applicati …
20
votes
1
vote
How do I pass a method as a parameter in python
Here is your example re-written to show a stand-alone working example:
class Test:
def method1(self):
return 'hello world'
def method2(self, methodToRun):
r …
1
vote
Basic easy_install question on python 2.6
I believe easy_install is a script that should be run from the command line
…
3
votes
