Skip to content

Commit

Permalink
Some rework of gnuplot.py
Browse files Browse the repository at this point in the history
  • Loading branch information
István Bozsó committed Feb 12, 2019
1 parent c682e32 commit 0b7b9dc
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 1 deletion.
Empty file modified bin/buildpdf.sh
100755 → 100644
Empty file.
Empty file modified bin/git.py
100755 → 100644
Empty file.
Empty file modified bin/ytvids.py
100755 → 100644
Empty file.
1 change: 1 addition & 0 deletions gnuplot/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .base import *
12 changes: 11 additions & 1 deletion gnuplot/gnuplot.py → gnuplot/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,17 @@
from os import fdopen
from sys import stderr, platform

import gnuplot.platforms as gp
import gnuplot.private as gp


__all__ = ("arrow", "call", "colorbar", "debug", "histo", "label", "labels",
"line", "linedef", "margins", "multiplot", "nicer", "obj",
"output", "palette", "plot", "plot_data", "plot_file", "plot_grid",
"ranges", "referesh", "remove_temps", "replot", "reset", "save",
"set", "silent", "splot", "style", "term", "title", "unset_multi",
"xlabel", "xrange", "xtics", "ylabel", "yrange", "ytics",
"zlabel", "zrange", "ztics")


_session = gp.Session()

Expand Down
File renamed without changes.

0 comments on commit 0b7b9dc

Please sign in to comment.