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

Skip to content

Commit dd4eca9

Browse files
committed
Add masked array support to hist().
svn path=/trunk/matplotlib/; revision=3053
1 parent 8851ec2 commit dd4eca9

2 files changed

Lines changed: 112 additions & 106 deletions

File tree

CHANGELOG

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
2007-03-03 Change barh to take a kwargs dict and pass it to bar.
1+
2007-03-14 Add masked-array support to hist. - EF
2+
3+
2007-03-03 Change barh to take a kwargs dict and pass it to bar.
24
Fixes sf bug #1669506.
35

46
2007-03-02 Add rc parameter pdf.inheritcolor, which disables all
@@ -17,45 +19,45 @@
1719
2007-02-22 WXAgg accelerator updates - KM
1820
WXAgg's C++ accelerator has been fixed to use the correct wxBitmap
1921
constructor.
20-
22+
2123
The backend has been updated to use new wxPython functionality to
2224
provide fast blit() animation without the C++ accelerator. This
2325
requires wxPython 2.8 or later. Previous versions of wxPython can
2426
use the C++ acclerator or the old pure Python routines.
25-
27+
2628
setup.py no longer builds the C++ accelerator when wxPython >= 2.8
2729
is present.
28-
30+
2931
The blit() method is now faster regardless of which agg/wxPython
3032
conversion routines are used.
3133

32-
2007-02-21 Applied the PDF backend patch by Nicolas Grilly.
34+
2007-02-21 Applied the PDF backend patch by Nicolas Grilly.
3335
This impacts several files and directories in matplotlib:
34-
36+
3537
- Created the directory lib/matplotlib/mpl-data/fonts/pdfcorefonts,
3638
holding AFM files for the 14 PDF core fonts. These fonts are
3739
embedded in every PDF viewing application.
38-
40+
3941
- setup.py: Added the directory pdfcorefonts to package_data.
40-
42+
4143
- lib/matplotlib/__init__.py: Added the default parameter
4244
'pdf.use14corefonts'. When True, the PDF backend uses
4345
only the 14 PDF core fonts.
44-
46+
4547
- lib/matplotlib/afm.py: Added some keywords found in
4648
recent AFM files. Added a little workaround to handle
4749
Euro symbol.
48-
50+
4951
- lib/matplotlib/fontmanager.py: Added support for the 14
5052
PDF core fonts. These fonts have a dedicated cache (file
5153
pdfcorefont.cache), not the same as for other AFM files
5254
(file .afmfont.cache). Also cleaned comments to conform
5355
to CODING_GUIDE.
54-
56+
5557
- lib/matplotlib/backends/backend_pdf.py:
5658
Added support for 14 PDF core fonts.
5759
Fixed some issues with incorrect character widths and
58-
encodings (works only for the most common encoding,
60+
encodings (works only for the most common encoding,
5961
WinAnsiEncoding, defined by the official PDF Reference).
6062
Removed parameter 'dpi' because it causes alignment issues.
6163

@@ -78,8 +80,8 @@
7880
removing site-packages/matplotlib/mpl-data and
7981
~/.matplotlib/ttffont.cache before installing - ADS
8082

81-
2007-02-07 Committed Rob Hetland's patch for qt4: remove
82-
references to text()/latin1(), plus some improvements
83+
2007-02-07 Committed Rob Hetland's patch for qt4: remove
84+
references to text()/latin1(), plus some improvements
8385
to the toolbar layout - DSD
8486

8587
===============================================================

0 commit comments

Comments
 (0)