[issue9644] PEP 383: os.statvfs() does not accept surrogateescape arguments

2013-01-01 Thread STINNER Victor
STINNER Victor added the comment: @baikie: Thanks for the fix, I applied it to Python 3.2 and I added a test. I also added the patch to Python 3.3 and 3.3. You may migrate to Python 3.3, it has a better support for undecodable filenames ;-) -- resolution: -> fixed status: open -> clos

[issue9644] PEP 383: os.statvfs() does not accept surrogateescape arguments

2013-01-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset dbe607fdc271 by Victor Stinner in branch 'default': (Merge 3.3) Issue #9644: Add a test on os.statvfs() for the PEP 383 http://hg.python.org/cpython/rev/dbe607fdc271 -- ___ Python tracker

[issue9644] PEP 383: os.statvfs() does not accept surrogateescape arguments

2013-01-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 479fca0adbf6 by Victor Stinner in branch '3.2': Issue #9644: Fix the encoding used by os.statvfs(): use the filesystem encoding http://hg.python.org/cpython/rev/479fca0adbf6 New changeset b0cc0b9e2472 by Victor Stinner in branch '3.3': Issue #9644:

[issue9644] PEP 383: os.statvfs() does not accept surrogateescape arguments

2012-12-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: At first sight the patch looks good, but test needed. -- stage: patch review -> test needed ___ Python tracker ___

[issue9644] PEP 383: os.statvfs() does not accept surrogateescape arguments

2012-12-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This was fixed in 3.3 (the complex solution is not backportable), therefore this is 3.2 only issue. -- nosy: +haypo, serhiy.storchaka stage: -> patch review versions: -Python 3.1 ___ Python tracker

[issue9644] PEP 383: os.statvfs() does not accept surrogateescape arguments

2010-08-19 Thread David Watson
New submission from David Watson : The statvfs() function still converts its argument with the "s" format; the attached patch (for 3.2) fixes it to use PyUnicode_FSConverter(). -- components: Extension Modules files: statvfs-pep383-3.2.diff keywords: patch messages: 114392 nosy: baikie p