Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/thirdparty/cairoplot-trunk/trunk/cairoplot/handlers/ps.py
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/cairoplot-trunk/trunk/cairoplot/handlers/ps.py')
-rwxr-xr-xthirdparty/cairoplot-trunk/trunk/cairoplot/handlers/ps.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/thirdparty/cairoplot-trunk/trunk/cairoplot/handlers/ps.py b/thirdparty/cairoplot-trunk/trunk/cairoplot/handlers/ps.py
deleted file mode 100755
index 7a77781..0000000
--- a/thirdparty/cairoplot-trunk/trunk/cairoplot/handlers/ps.py
+++ /dev/null
@@ -1,12 +0,0 @@
-
-import cairo
-from .vector import VectorHandler as _VectorHandler
-
-class PSHandler(_VectorHandler):
- """Handler to create plots that output to PostScript files."""
-
- def __init__(self, filename, width, height):
- """Creates a surface to be used by Cairo."""
- _VectorHandler.__init__(self, None, width, height)
- self.surface = cairo.PSSurface(filename, width, height)
-