Search Results

1
vote
2answers
301 views

why might my pyglet vertex lists and batches be very slow on Windows?

I'm writing opengl code in python using the library pyglet. When I draw to the screen using pyglet.graphics.vertex_list or pyglet.graphics.batch objects, they are very slow (~0.1 fps) compared to p …
9
votes
2answers
230 views

Can I create a Python extension module in D (instead of C)

I hear D is link-compatible with C. I'd like to use D to create an extension module for Python. Am I overlooking some reason why it's never going to work? …
1
vote

Efficient Image Thumbnail Control for Python?

If you had to resort to writing your own, I've had good results using the Python Imaging Library to create thumbnails in the past. h …
1
vote

Iron python, beautiful soup, win32 app

We are distributing a 40k line IronPython application. We have not been able to compile the whole thing into a single binary distributable. Instead we have been distributing it as a zillion tiny dl …
0
votes

why might my pyglet vertex lists and batches be very slow on Windows?

Don't forget to invoke your pyglet scripts with 'python -O myscript.py', the '-O' flag can make a huge performance difference. …
4
votes

pylint warning on ‘except Exception:’

Since Python2.6 catching Exception has become a lot more reasonable, because all the exceptions that you wouldn't want to catch (SystemExit, KeyboardInterrupt) no longer inherit from Exception. The …
1
vote

Interface for modifying Windows environment variables from Python

Using setx has few drawbacks, especially if you're trying to append to environment variables (eg. setx PATH %Path%;C:\mypath) This will repeatedly append to the path every time you run it, which ca …
2
votes

Best environment for Python on Windows?

Given the nuances of your question, this probably isn't the answer that the OP wants to hear, but just in case anyone else with different sensibilities is reading this: I recommend using Vim or Ema …