|
From: <jd...@us...> - 2008-07-27 04:47:44
|
Revision: 5900
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5900&view=rev
Author: jdh2358
Date: 2008-07-27 04:47:42 +0000 (Sun, 27 Jul 2008)
Log Message:
-----------
commented out wide unicode line in stix example until we have a conditional check for wide char support
Modified Paths:
--------------
trunk/matplotlib/examples/pylab_examples/stix_fonts_demo.py
trunk/matplotlib/examples/tests/backend_driver.py
Modified: trunk/matplotlib/examples/pylab_examples/stix_fonts_demo.py
===================================================================
--- trunk/matplotlib/examples/pylab_examples/stix_fonts_demo.py 2008-07-27 02:11:05 UTC (rev 5899)
+++ trunk/matplotlib/examples/pylab_examples/stix_fonts_demo.py 2008-07-27 04:47:42 UTC (rev 5900)
@@ -14,14 +14,14 @@
r'$\mathbf{\mathbb{Blackboard \pi}}$',
r'$\mathfrak{Fraktur} \mathbf{\mathfrak{Fraktur}}$',
r'$\mathscr{Script}$',
- ur'Direct Unicode: $\u23ce \mathrm{\ue0f2 \U0001D538}$'
+# ur'Direct Unicode: $\u23ce \mathrm{\ue0f2 \U0001D538}$'
]
from pylab import *
def doall():
tests = stests
-
+
figure(figsize=(8, (len(tests) * 1) + 2))
plot([0, 0], 'r')
grid(False)
@@ -34,7 +34,7 @@
savefig('stix_fonts_example')
#close('all')
show()
-
+
if '--latex' in sys.argv:
fd = open("stix_fonts_examples.ltx", "w")
fd.write("\\documentclass{article}\n")
Modified: trunk/matplotlib/examples/tests/backend_driver.py
===================================================================
--- trunk/matplotlib/examples/tests/backend_driver.py 2008-07-27 02:11:05 UTC (rev 5899)
+++ trunk/matplotlib/examples/tests/backend_driver.py 2008-07-27 04:47:42 UTC (rev 5900)
@@ -102,9 +102,11 @@
'spy_demos.py',
'stem_plot.py',
'step_demo.py',
+ 'stix_fonts_demo.py',
'stock_demo.py',
'subplot_demo.py',
-# 'set_and_get.py',
+ 'symlog_demo.py',
+ # 'set_and_get.py',
'table_demo.py',
'text_handles.py',
'text_rotation.py',
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|