Re: [Python-Dev] Full unicode support for the import machinery

2010-07-29 Thread Victor Stinner
Le vendredi 09 juillet 2010 02:11:35, Victor Stinner a écrit : > I'm trying to fix Python to support undecodable bytes in the Python path > (...) My work is mostly done. I posted a patch on Rietveld and opened an issue. http://bugs.python.org/issue9425 http://codereview.appspot.com/1874048 --

Re: [Python-Dev] Full unicode support for the import machinery

2010-07-09 Thread Nick Coghlan
On Fri, Jul 9, 2010 at 10:11 AM, Victor Stinner wrote: > I created an svn branch because I think that it's easier to review short > commits than one unique huge patch. The branch also helps me to share the > branch between different computers, and allow other people to review the > commits (and/or

[Python-Dev] Full unicode support for the import machinery

2010-07-08 Thread Victor Stinner
Hi, I'm trying to fix Python to support undecodable bytes in the Python path since some months ago. My first try was really huge and sometimes ugly. When it was possible, I extracted some short and simple patches and applied them to py3k (sometimes with an issue, sometimes directly in the svn).