From 355f5c15d2cb0ad10933cac73961ce7cea0968b5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rg=20Lehmann?= Date: Sat, 20 Mar 2004 13:36:59 +0000 Subject: [PATCH] move to writeEPSfile git-svn-id: https://pyx.svn.sourceforge.net/svnroot/pyx/trunk/pyx@1491 069f4177-920e-0410-937b-c2a4a81bcd90 --- test/profile_path.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/profile_path.py b/test/profile_path.py index e6e11126..797867c7 100755 --- a/test/profile_path.py +++ b/test/profile_path.py @@ -17,7 +17,7 @@ def testspeed(): p.append(lineto("%d pt" % i, "%d pt" % i)) c.stroke(p) - c.writetofile("testspeed") + c.writeEPSfile("testspeed") def testspeed2(): "coordinates in user units" @@ -29,7 +29,7 @@ def testspeed2(): p.append(lineto(i,i)) c.stroke(p) - c.writetofile("testspeed") + c.writeEPSfile("testspeed") def testspeed3(): "coordinates in pts (internal routines)" @@ -41,7 +41,7 @@ def testspeed3(): p.append(pyx.path.lineto_pt(i, i)) c.stroke(p) - c.writetofile("testspeed") + c.writeEPSfile("testspeed") def testspeedintersect(): p=path(moveto(10,10), curveto(12,16,14,15,12,19)) -- 2.11.4.GIT