Message9674
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'> |
|
Date |
User |
Action |
Args |
2015-03-18 16:36:26 | zyasoft | set | messageid: <1426696586.81.0.866156565156.issue2288@psf.upfronthosting.co.za> |
2015-03-18 16:36:26 | zyasoft | set | recipients:
+ zyasoft, Arfrever, stefan.richthofer |
2015-03-18 16:36:26 | zyasoft | link | issue2288 messages |
2015-03-18 16:36:26 | zyasoft | create | |
|