#13161: Fix unicode issue in axes labels
----------------------------------------+-----------------------------------
Reporter: kcrisman | Owner: jason, was
Type: defect | Status: needs_work
Priority: major | Milestone: sage-5.3
Component: graphics | Resolution:
Keywords: | Work issues:
Report Upstream: N/A | Reviewers: Sébastien Labbé
Authors: Dan Drake, shahuwang | Merged in:
Dependencies: | Stopgaps:
----------------------------------------+-----------------------------------
Comment (by slabbe):
I never builded the documentation as pdf before. I just did it and get the
same error.
Could this be related to the first line added by the patch:
{{{
# -*- encoding: utf-8 -*-
}}}
which should be
{{{
# -*- coding: utf-8 -*-
}}}
?
Another possibility would be to write the test as
{{{
sage: c.axes_labels(['z',u'\xeb\x8b\xb4'])
sage: c._axes_labels
('z', u'\xeb\x8b\xb4')
}}}
instead of
{{{
sage: c.axes_labels(['z',u'닎'])
sage: c._axes_labels
('z', u'\xeb\x8b\xb4')
}}}
I am testing those two options right now.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/13161#comment:14>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.