From 929fe67989b7a4f9a248b4b746e22c57fced96cf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Wobst?= Date: Sat, 31 Jan 2004 15:22:33 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://pyx.svn.sourceforge.net/svnroot/pyx/trunk/pyx@1312 069f4177-920e-0410-937b-c2a4a81bcd90 --- CHANGES | 3 +++ pyx/dvifile.py | 2 +- pyx/graph.py | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 657fdaf1..2c354916 100644 --- a/CHANGES +++ b/CHANGES @@ -39,10 +39,13 @@ TODO: - use csv module (new in 2.3) - canvas module: - multi page PostScript output + - contructor should only take a texrunner keyword argument + - set method??? - connnector module: - _xxx -> xxx_pt renaming - deco module: - consider rewriting decoratedpath as canvas + - arrows should not be stroked by default - style and color module: - support modification of existing styles via __call__ diff --git a/pyx/dvifile.py b/pyx/dvifile.py index 49225ad1..bdb025a2 100644 --- a/pyx/dvifile.py +++ b/pyx/dvifile.py @@ -811,7 +811,7 @@ class dvifile: if self.actoutstart is None: self.actoutstart = self.pos[_POS_H], self.pos[_POS_V] self.actoutstring = "" - if char > 32 and char < 127 and chr(char) not in "()[]<>": + if char > 32 and char < 127 and chr(char) not in "()[]<>\\": ascii = "%s" % chr(char) else: ascii = "\\%03o" % char diff --git a/pyx/graph.py b/pyx/graph.py index 5fddeb23..f22b4a85 100644 --- a/pyx/graph.py +++ b/pyx/graph.py @@ -980,8 +980,8 @@ class rationaltexter: denomprefix, denominfix and denomsuffix are set and minuspos is not -1 or the fraction is positive - labelattrs is a list of attributes for a texrunners text method; - a single is allowed without being a list; None is considered as - an empty list; labelattrs might be changed in the painter as well""" + None is considered as an empty list; labelattrs might be changed + in the painter as well""" self.prefix = prefix self.infix = infix self.suffix = suffix -- 2.11.4.GIT