Results 171 comments of Alex Earl

Looks good now: ``` >>> import os >>> os.pipe() (3, 4) >>> f=file(r"c:\tmp\bar","w") Traceback (most recent call last): File "", line 1, in IOError: [Errno 2] Could not find a...

@kunom FYI, please reference this issue when you do your setprofile work.

_From @jdhardy on December 14, 2015 3:17_ I'm not sure what the standard layout is on Unix - where should the IronPython library be placed? As similar as possible to...

_From @felixonmars on December 14, 2015 3:26_ The path returned is similar to CPython, but doesn't match IronPython's installation, which is using `nt` layout. I am not sure if it...

_From @jdhardy on December 14, 2015 3:39_ Well, it can bypass the Makefile parsing, or use a dummy Makefile, whatever is easiest. Honestly, when I package stuff for Linux I...

_From @felixonmars on December 14, 2015 3:57_ Just had a look at the current layout - it's a bit harder than I thought. Current distutils (and maybe others) will think...

@markusschaber Is this still an issue?

The issue is there is no codec for gb2312. The code for the `read` calls `GetDecoder` which tries to get a decoder object, not just an encoding. It can't find...