Message9674

Author zyasoft
Recipients Arfrever, stefan.richthofer, zyasoft
Date 2015-03-18.16:36:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426696586.81.0.866156565156.issue2288@psf.upfronthosting.co.za>
In-reply-to
Content
Re importing unicode paths, maybe Sphinx is running Python 3 tests?

Running on Ubuntu 14.10:

$ python2
Python 2.7.8 (default, Oct 20 2014, 15:05:19)
[GCC 4.9.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> __import__(u"español")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'ascii' codec can't encode character u'\xf1' in position 4: ordinal not in range(128)

$ python3
Python 3.4.2 (default, Oct  8 2014, 13:08:17)
[GCC 4.9.1] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> __import__(u"español")
<module 'español' from '/home/jbaker/español.py'>
History
Date User Action Args
2015-03-18 16:36:26zyasoftsetmessageid: <1426696586.81.0.866156565156.issue2288@psf.upfronthosting.co.za>
2015-03-18 16:36:26zyasoftsetrecipients: + zyasoft, Arfrever, stefan.richthofer
2015-03-18 16:36:26zyasoftlinkissue2288 messages
2015-03-18 16:36:26zyasoftcreate