Mike C. Fletcher

Results 26 comments of Mike C. Fletcher

Hmm, somehow I wound up with pies installed (likely via a dependency statement from some piece of software). Which then broke my requests (urllib3) code. I'm not sure why "six"...

I'm seeing this error in Python 2.7 on Ubuntu 17.04 when docker is installed with `pip install --user docker`. There the "backports" module reports as being: > >>> backports >...

The file seems to use a compression format: ```ulaw,embedded-shorten-v2.00``` which isn't supported by sphfile (which assumes uncompressed format). sph2pipe does properly convert the file to .wav, but I don't see...

Okay, added to current bzr head.

I'd be unhappy dropping Python 2.7 support without bumping the major release version. My intention is to continue supporting (for some value of support defined based on my rather scant...

The python3 port is mostly there in develop and master branches, btw. I just haven't done the polishing necessary to do a release. IIRC we've still got problems with the...

Sorry, I wasn't able to replicate the error on current bzr head. But then I don't have the precise rendering environment you're using. For instance, I can run the `tests/osdemo.py`...

@liushuya7 what you're seeing there is an attempt to import OSMesa specific functionality from a GLX (non-OSMesa) platform. As @jackd noted, to force the platform to be OSMesa, set an...

Does indeed look wrong. I've updated the test to check the platform's byteorder and use the expected order in the assertions. Code updated in develop.

Code for the constants is in OpenGL.constant, short answer, no it's not the Python 3 enums, but they do have an attribute `name`: ``` >>> import OpenGL.GL >>> print(OpenGL.GL.GL_FALSE.name) GL_FALSE...