[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2016-03-28 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: -paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker ___ ___ Python-bugs-list maili

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2016-03-28 Thread Berker Peksag
Berker Peksag added the comment: shanzhengcheng: Please don't update closed issues. gns3-1.4.5 is not part of the Python standard library. You'll get better support by using the gns3 support channels. If you still think that this is a bug in Python, please file a new issue by using the form a

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2015-01-26 Thread STINNER Victor
STINNER Victor added the comment: I applied fix_unicode_v2.diff to Python 3.5. For older Python versions, it's easy to workaround this issue: ensure explicitly that your object is a Unicode object using PyUnicode_Check(). You may write your function to call PyUnicode_EncodeFSDefault() with a

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2015-01-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset e124aab5d9a0 by Victor Stinner in branch 'default': Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and https://hg.python.org/cpython/rev/e124aab5d9a0 -- nosy: +python-dev ___ Python tra

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2014-10-14 Thread Campbell Barton
Campbell Barton added the comment: Updated the patch for '93049:d9a3d23cf8f0' Note, the link for the original bug report has changed: See https://developer.blender.org/T31856 -- status: closed -> open Added file: http://bugs.python.org/file36913/fix_unicode_v2.diff ___

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2014-10-14 Thread Campbell Barton
Changes by Campbell Barton : -- resolution: out of date -> remind ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2014-03-23 Thread STINNER Victor
STINNER Victor added the comment: It's not really a bug, Python behaves badly when you pass invalid parameters. Campbell was asked to update his patch but he didn't 2 years later. So I just close the issue. Reopen a new issue with an updated patch if you want a nice exception message instead o

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2014-03-22 Thread Mark Lawrence
Mark Lawrence added the comment: msg192795 says this is still an issue so I'm not sure why it's been set to languishing as it's only 18 months old. -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2013-07-10 Thread STINNER Victor
STINNER Victor added the comment: > Is this still an issue for Python 3.3? Yes. -- ___ Python tracker ___ ___ Python-bugs-list mailin

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2013-07-10 Thread Christian Heimes
Christian Heimes added the comment: The code has changed considerable since you have created the patch. Is this still an issue for Python 3.3? -- nosy: +christian.heimes status: open -> languishing versions: +Python 3.4 ___ Python tracker

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2012-09-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Sounds reasonable to me. -- nosy: +pitrou stage: -> patch review ___ Python tracker ___ ___ Python-

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2012-09-04 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +haypo type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2012-09-03 Thread Campbell Barton
New submission from Campbell Barton: There is an inconsistency in PyUnicode_EncodeFSDefault(), on Linux its argument is checked to be unicode, and NULL is returned when its not. On windows however, this throws an assertion. The problem with this is, in some CAPI code you may pass an argument a

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2012-09-03 Thread Campbell Barton
Changes by Campbell Barton : -- components: +Unicode, Windows nosy: +ezio.melotti versions: +Python 3.2, Python 3.3 ___ Python tracker ___ ___