Tag Archives: python

Fixing Windows Python 2.7 unicode issue with subprocess’s Popen.

TL;DR Fixing Windows Python 2.7 unicode issue with subprocess.Popen being unable to properly send command lines to the system. Here is the python code fixing unicode issue Details What Python 2.7 is plagued by bugs that won't be fixed. One …

Read more »

comparison of minimal packaging between distribute and distutils2

In a pythonic mind, we shoud keep things simple as possible. But when having to deal with distribution of your code, especially if it's ONE small python file, you'll might cringe when facing the boilerplate that is required. Even with …

Read more »

Inheriting from a builtin strangeness

In python, when inheriting from a builtin, you must be carefull as your object won't follow common rules.

Read more »