Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 841c298

Browse files
committed
syncing to 0.65
svn path=/trunk/matplotlib/; revision=783
1 parent af5fc9c commit 841c298

5 files changed

Lines changed: 21 additions & 9 deletions

File tree

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ New entries should be added at the top
22

33
2004-12-13 dates.py: removed all timezone() calls, except for UTC - SC
44

5+
======================================================================
6+
7+
2004-12-13 0.65 released - JDH
8+
59
2004-12-13 colors.py: rgb2hex(), hex2color() made simpler (and faster), also
610
rgb2hex() - added round() instead of integer truncation
711
hex2color() - changed 256.0 divisor to 255.0, so now

DEVNOTES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ http://matplotlib.sourceforge.net
4444
2) edit __init__.py, setup.py license.html.template to the correct version number
4545
local> clearbak
4646
local> make htmldocs
47-
local> scp htdocs/site.tar.gz [email protected]:/home/groups/m/ma/matplotlib/htdocs/
47+
local> scp site.tar.gz [email protected]:/home/groups/m/ma/matplotlib/htdocs/
4848
local> ssh -l jdh2358 shell.sf.net
4949
sf> cd /home/groups/m/ma/matplotlib/htdocs
5050
sf> tar xvfz site.tar.gz

MANIFEST

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ CHANGELOG
44
INSTALL
55
INTERACTIVE
66
KNOWN_BUGS
7+
MANIFEST
78
MANIFEST.in
89
Makefile
910
README

lib/matplotlib/pylab.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
barh - a horizontal bar chart
1818
cla - clear current axes
1919
clf - clear a figure window
20+
clim - adjust the color limits of the current image
2021
close - close a figure window
2122
colorbar - add a colorbar to the current figure
2223
cohere - make a plot of coherence
@@ -33,18 +34,23 @@
3334
gcf - return the current figure
3435
gci - get the current image, or None
3536
get - get a handle graphics property
37+
grid - set whether gridding is on
3638
hist - make a histogram
3739
hold - set the axes hold state
38-
legend - make an axes legend
39-
loglog - a log log plot
40+
ioff - turn interaction mode off
41+
ion - turn interaction mode on
42+
isinteractive - return True if interaction mode is on
4043
imread - load image file into array
4144
imshow - plot image data
4245
ishold - return the hold state of the current axes
46+
legend - make an axes legend
47+
loglog - a log log plot
4348
pcolor - make a pseudocolor plot
4449
plot - make a line plot
4550
polar - make a polar plot on a PolarAxes
4651
psd - make a plot of power spectral density
4752
rc - control the default params
53+
rgrids - customize the radial grids and labels for polar
4854
savefig - save the current figure
4955
scatter - make a scatter plot
5056
set - set a handle graphics property
@@ -58,6 +64,7 @@
5864
subplot - make a subplot (numrows, numcols, axesnum)
5965
table - add a table to the plot
6066
text - add some text at location x,y to the current axes
67+
thetagrids - customize the radial theta grids and labels for polar
6168
title - add a title to the current axes
6269
xlim - set/get the xlimits
6370
ylim - set/get the ylimits

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@
2323
BUILD_AGG = 1
2424

2525
# Render Agg to the GTK canvas
26-
BUILD_GTKAGG = 1
27-
#BUILD_GTKAGG = 'auto'
26+
#BUILD_GTKAGG = 0
27+
BUILD_GTKAGG = 'auto'
2828

2929
# build TK GUI with Agg renderer ; requires Tkinter Python extension
3030
# and Tk includes
3131
# Use False or 0 if you don't want to build
32-
BUILD_TKAGG = 1
33-
#BUILD_TKAGG = 'auto'
32+
#BUILD_TKAGG = 0
33+
BUILD_TKAGG = 'auto'
3434

3535
# build a small extension to manage the focus on win32 platforms.
36-
BUILD_WINDOWING = 1
37-
#BUILD_WINDOWING = 'auto'
36+
#BUILD_WINDOWING = 0
37+
BUILD_WINDOWING = 'auto'
3838

3939

4040
VERBOSE = False # insert lots of diagnostic prints in extension code

0 commit comments

Comments
 (0)