|
From: <jd...@us...> - 2008-10-15 16:50:04
|
Revision: 6205
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6205&view=rev
Author: jdh2358
Date: 2008-10-15 15:51:35 +0000 (Wed, 15 Oct 2008)
Log Message:
-----------
apllied michaels unicode fix
Modified Paths:
--------------
trunk/matplotlib/examples/pylab_examples/mathtext_examples.py
Modified: trunk/matplotlib/examples/pylab_examples/mathtext_examples.py
===================================================================
--- trunk/matplotlib/examples/pylab_examples/mathtext_examples.py 2008-10-15 15:49:26 UTC (rev 6204)
+++ trunk/matplotlib/examples/pylab_examples/mathtext_examples.py 2008-10-15 15:51:35 UTC (rev 6205)
@@ -50,6 +50,11 @@
r'$\Gamma \Delta \Theta \Lambda \Xi \Pi \Sigma \Upsilon \Phi \Psi \Omega$',
r'$\alpha \beta \gamma \delta \epsilon \zeta \eta \theta \iota \lambda \mu \nu \xi \pi \kappa \rho \sigma \tau \upsilon \phi \chi \psi$',
#ur'Generic symbol: $\u23ce \mathrm{\ue0f2 \U0001D538}$'
+ ur'Generic symbol: $\u23ce$',
+ ]
+
+if sys.maxunicode > 0xffff:
+ stests.append('$\mathrm{\ue0f2 \U0001D538}$')
]
from pylab import *
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|