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

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

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

Modified: branches/v0_91_maint/CHANGELOG
===================================================================
--- branches/v0_91_maint/CHANGELOG      2008-09-11 20:24:49 UTC (rev 6085)
+++ branches/v0_91_maint/CHANGELOG      2008-09-11 20:28:11 UTC (rev 6086)
@@ -1,3 +1,5 @@
+2008-09-11 Fix use of backticks in PS - MGD
+
 2008-09-07 Changed full arrows slightly to avoid an xpdf rendering
            problem reported by Friedrich Hagedorn. - JKS
 

Modified: branches/v0_91_maint/lib/matplotlib/backends/backend_ps.py
===================================================================
--- branches/v0_91_maint/lib/matplotlib/backends/backend_ps.py  2008-09-11 
20:24:49 UTC (rev 6085)
+++ branches/v0_91_maint/lib/matplotlib/backends/backend_ps.py  2008-09-11 
20:28:11 UTC (rev 6086)
@@ -97,6 +97,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