Search Results

7
votes
10answers
1k views

Test if executable exists in Python?

In python, is there a portable and simple way to test if an executable program exists? By simple I mean something like the 'which' command which would be just perfect. I don't …
1
vote

(Python) socket.gaierror on every addres…except http://www.reddit.com?

you forgot to resolve the hostname: addr = socket.gethostbyname(url[1]) ... sock.connect((addr,80)) …
4
votes

Correct way to detect sequence parameter?

Sequences are described here: http://www.python.org/doc/2.5.2/lib/typesseq.html So sequences are not the same …
3
votes

In Python, how can you get the name of a member function’s class?

testFunc.im_class http://www.python.org/doc/2.5.2/ref/types.html i …
0
votes

Adding a dimension to every element of a numpy.array

I propose: numpy.resize(my_ar, (3,3)).transpose() You can of course adapt the shape (my_ar.shape[0],)*2 or whatever …
9
votes

python as a “batch” script (i.e. run commands from python)

You should create a new processess using the subprocess module. I'm not fluent in windows processes b …
0
votes

Python - Create a list/dict with Initial Capacity

From what I understand, python lists are already quite similar to ArrayLists. But if you want to tweak those parameters I found this post on the net that may be interesting (basically, just create …
4
votes

Python subprocess.call() fails when using pythonw.exe

sys.stdin and sys.stdout handles are invalid because pythonw does not provide console support as it runs as a deamon, so default arguments of subprocess.call() …
3
votes

How do I use IPython as my emacs python interpreter

The first link on google works: you put ipython.el to a directory in your emacs load path, for me in .emacs-lisp …
2
votes

Writing a compiler for a DSL in python

Yes, there are many -- too many -- parsing tools, but none in the standard library. From what what I saw PLY and SPARK are popular. PLY …
0
votes

Python Decorators run before function it is decorating is called?

python decorators are functions applied to a function to transform it: @my_decorator def function (): ... is like doing this: def function():... f …
5
votes

destroying a Toplevel tk window in python

Because it returns a function and not its result. You should put: command=TL.destroy or if you used lambda: command=lambda: TL.destroy() …
3
votes

How can I unload a DLL using ctypes in Python?

you should be able to do it by disposing the object mydll = ctypes.CDLL('...') del mydll mydll = ctypes.CDLL('...') EDIT: Hop's comment is right, …