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 …
Tag Archives: python
Fixing Windows Python 2.7 unicode issue with subprocess’s Popen.
Posted by vaab
on 2017/03/16
No comments
comparison of minimal packaging between distribute and distutils2
Posted by vaab
on 2013/02/22
3 comments
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 …
Inheriting from a builtin strangeness
Posted by vaab
on 2010/11/23
No comments
In python, when inheriting from a builtin, you must be carefull as your object won't follow common rules.