File tree Expand file tree Collapse file tree 5 files changed +17
-8
lines changed Expand file tree Collapse file tree 5 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 5
5
INTERACTIVE
6
6
KNOWN_BUGS
7
7
LICENSE
8
- MANIFEST
9
8
MANIFEST.in
10
9
Makefile
11
10
README
@@ -58,6 +57,7 @@ examples/psd_demo.py
58
57
examples/pstest.py
59
58
examples/scatter_demo.py
60
59
examples/scatter_demo2.py
60
+ examples/scatter_marker.py
61
61
examples/simple_plot.py
62
62
examples/stock_demo.py
63
63
examples/subplot_demo.py
@@ -158,6 +158,7 @@ matplotlib/table.py
158
158
matplotlib/text.py
159
159
matplotlib/transforms.py
160
160
matplotlib/backends/__init__.py
161
+ matplotlib/backends/backend_agg.py
161
162
matplotlib/backends/backend_gd.py
162
163
matplotlib/backends/backend_gtk.py
163
164
matplotlib/backends/backend_gtkgd.py
@@ -166,9 +167,9 @@ matplotlib/backends/backend_ps.py
166
167
matplotlib/backends/backend_template.py
167
168
matplotlib/backends/backend_wx.py
168
169
matplotlib/backends/ttf_font_manager.py
169
- src/_backend_agg.cpp
170
170
test/README
171
171
test/alignment_test.py
172
+ test/backend_agg_test.py
172
173
test/bar_test.py
173
174
test/batchtest.py
174
175
test/batchtest2.py
@@ -180,6 +181,7 @@ test/gd2gtk_test.py
180
181
test/gtk2_test.py
181
182
test/highres_test.py
182
183
test/hist_test.py
184
+ test/histogram_demo.py
183
185
test/line_thickness.py
184
186
test/lots_o_points.py
185
187
test/manset.py
@@ -194,6 +196,7 @@ test/print_only.py
194
196
test/rounding.py
195
197
test/semilog_test.py
196
198
test/specgram_demo.py
199
+ test/subplot_demo.py
197
200
test/table_demo.py
198
201
test/table_demo3.py
199
202
test/table_test.py
Original file line number Diff line number Diff line change 2
2
# Copyright (C) 2003 <jdhunter@ace.bsd.uchicago.edu>
3
3
# $Header$
4
4
# $Log$
5
+ # Revision 1.18 2004/02/11 00:07:44 jdh2358
6
+ # relocated gtkgd ext mod
7
+ #
5
8
# Revision 1.17 2004/01/30 21:33:19 jdh2358
6
9
# last changes for 0.50e
7
10
#
@@ -62,27 +65,29 @@ DISTFILES = API_CHANGES KNOWN_BUGS INSTALL README TODO LICENSE \
62
65
CHANGELOG Makefile GOALS INTERACTIVE \
63
66
MANIFEST.in matplotlib examples setup.py
64
67
65
- MODULES = \
68
+ MODULES = \
69
+ matplotlib.afm \
66
70
matplotlib.artist \
67
71
matplotlib.axes \
68
72
matplotlib.axis \
69
73
matplotlib.backend_bases \
74
+ matplotlib.backends.backend_agg \
70
75
matplotlib.backends.backend_gd \
71
76
matplotlib.backends.backend_gtk \
72
- matplotlib.backends.backend_gtkgd \
77
+ matplotlib.backends.backend_gtkgd \
73
78
matplotlib.backends.backend_ps \
74
79
matplotlib.backends.backend_template \
80
+ matplotlib.backends.backend_wx \
75
81
matplotlib.cbook \
76
82
matplotlib.figure \
77
83
matplotlib.legend \
78
84
matplotlib.lines \
79
85
matplotlib.matlab \
80
86
matplotlib.mlab \
81
87
matplotlib.patches \
88
+ matplotlib.table \
82
89
matplotlib.text \
83
90
matplotlib.transforms \
84
- matplotlib.afm \
85
- matplotlib.backends.backend_wx
86
91
87
92
RELEASE = matplotlib-${VERSION}
88
93
Original file line number Diff line number Diff line change 1
1
from matplotlib .matlab import *
2
2
3
+ figure (1 )
3
4
t = arange (0.0 , 1.0 , 0.02 )
4
5
s = sin (2 * 2 * pi * t )
5
6
plot (t , s , 'x' )
Original file line number Diff line number Diff line change 19
19
build_agg (ext_modules )
20
20
21
21
setup (name = "matplotlib" ,
22
- version = '0.50i ' ,
22
+ version = '0.50j ' ,
23
23
description = "Matlab style python plotting package" ,
24
24
author = "John D. Hunter" ,
25
25
author_email = "jdhunter@ace.bsd.uchicago.edu" ,
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def add_gd_flags(module):
41
41
42
42
43
43
def build_gtkgd (ext_modules ):
44
- module = Extension ('matplotlib._gtkgd' ,
44
+ module = Extension ('matplotlib.backends. _gtkgd' ,
45
45
['src/_gtkgd.c' ],
46
46
)
47
47
add_pygtk_flags (module )
You can’t perform that action at this time.
0 commit comments