[issue12995] Different behaviours with class str between v3.1.2 and v3.2.2

2011-09-16 Thread Vincent Vande Vyvre
New submission from Vincent Vande Vyvre vincent.vandevy...@swing.be: Hi, Trying this code: -- # -*- coding: utf-8 -*- import os import sys import platform print('\nPython version: ', sys.version.split()[0]) print(platform.platform()) paths =

[issue12995] Different behaviours with class str between v3.1.2 and v3.2.2

2011-09-16 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: This is because how the filesystem encoding is determined has changed. You probably need to explicity discover how non-ascii characters like those in '/home/vincent/àéèîö.jpg' are encoded in your filesystem. -- nosy: