Archives week 36 of 2011
Sept. 5, 2011 - Sept. 11, 2011
SimpleParse-pure on Python 3.2, useless, but working
Written by
on
in
Snaking.
I wanted to test PyOpenGL under 3.2 (using 2to3), but my entire test-suite is written in OpenGLContext, which is dependent on many other libraries (numpy, pydispatcher, pyvrml97, fonttools, ttfquery, simpleparse, etceteras). So, since I want to test, let's see how easy it is to convert the SimpleParse-pure project (written to test pypy speed) into a ...
PyOpenGL should now support GLE on Python 2.7
Written by
on
in
Snaking.
Got the GLE DLL built using VC9 (a.k.a. 2008), and a mechanism in place to load the GLE DLL based on which version of Python you are running (unfortunately, I don't see a good hook to check for the vcX version to use that to decide which DLL to load. In theory someone might compile ...
OpenGL up to 4.2
Written by
on
in
Snaking.
We should now have up to OpenGL 4.2 supported in PyOpenGL bzr head, should someone have a desire to play with it and hardware/drivers capable of running it.
Requests Library is nice
Written by
on
in
Snaking.
Experimented with replacing a few urllib2 calls in a product today with the requests library. Yes, requests really is nice (sat down and read through the code last night). One thing that's not obvious from the docs, to do digest auth, you pass (username, password, 'digest') as the auth parameter. There are a number ...