Revision: 6085
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6085&view=rev
Author:   mdboom
Date:     2008-09-11 20:24:49 +0000 (Thu, 11 Sep 2008)

Log Message:
-----------
Fix backticks in PS output.

Modified Paths:
--------------
    trunk/matplotlib/CHANGELOG
    trunk/matplotlib/lib/matplotlib/backends/backend_ps.py

Modified: trunk/matplotlib/CHANGELOG
===================================================================
--- trunk/matplotlib/CHANGELOG  2008-09-11 19:30:39 UTC (rev 6084)
+++ trunk/matplotlib/CHANGELOG  2008-09-11 20:24:49 UTC (rev 6085)
@@ -1,3 +1,5 @@
+2008-09-11 Fix backtick in Postscript output. - MGD
+
 2008-09-10 [ 2089958 ] Path simplification for vector output backends
            Leverage the simplification code exposed through
            path_to_polygons to simplify certain well-behaved paths in

Modified: trunk/matplotlib/lib/matplotlib/backends/backend_ps.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/backends/backend_ps.py      2008-09-11 
19:30:39 UTC (rev 6084)
+++ trunk/matplotlib/lib/matplotlib/backends/backend_ps.py      2008-09-11 
20:24:49 UTC (rev 6085)
@@ -101,6 +101,7 @@
     s=s.replace("(", "\\(")
     s=s.replace(")", "\\)")
     s=s.replace("'", "\\251")
+    s=s.replace("`", "\\301")
     s=re.sub(r"[^ -~\n]", lambda x: r"\%03o"%ord(x.group()), s)
     return s
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-checkins mailing list
Matplotlib-checkins@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to