-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathgithub_stats.txt
More file actions
1334 lines (1323 loc) · 75.8 KB
/
github_stats.txt
File metadata and controls
1334 lines (1323 loc) · 75.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.. _github-stats:
Github stats
============
GitHub stats for 2012/06/30 - 2013/03/26 (tag: v1.1.1)
These lists are automatically generated, and may be incomplete or contain duplicates.
The following 90 authors contributed 1618 commits.
* Aaron Boushley
* Adam Ginsburg
* Ahmet Bakan
* Amy
* Andreas Hilboll
* Andrew Dawson
* Arnaud Gardelein
* Ben Gamari
* Ben Root
* Bradley M. Froehle
* Brett Graham
* Bussonnier Matthias
* C. Gohlke
* Carl Michal
* Chris Beaumont
* Christoph Dann
* Christoph Gohlke
* Corey Farwell
* Craig M
* Craig Tenney
* Damon McDougall
* Daniel Hyams
* Darren Dale
* David Huard
* Eric Firing
* Ezra Peisach
* Francesco Montesano
* Gellule Xg
* Graham Poulter
* Hubert Holin
* Ian Thomas
* Ignas Anikevicius (gns_ank)
* Jack (aka Daniel) Kelly
* Jack Kelly
* Jae-Joon Lee
* James R. Evans
* Jan-Philip Gehrcke
* Jason Grout
* Jens H. Nielsen
* Jens Hedegaard Nielsen
* Joe Kington
* John Hunter
* Jonathan Waltman
* Jouni K. Seppänen
* Lance Hepler
* Marc Abramowitz
* Martin Spacek
* Matt Giuca
* Matthew Emmett
* Matthias BUSSONNIER
* Michael Droettboom
* Michiel de Hoon
* Mike Kaufman
* Neil
* Nelle Varoquaux
* Nic Eggert
* Nick Semenkovich
* Nikolay Vyahhi
* Paul Ivanov
* Pauli Virtanen
* Peter Würtz
* Phil Elson
* Piti Ongmongkolkul
* Robert Johansson
* Russell Owen
* Ryan Dale
* Ryan May
* Sandro Tosi
* Sebastian Pinnau
* Simon Cross
* Stefan van der Walt
* Takafumi Arakaki
* Thomas A Caswell
* Thomas Kluyver
* Thomas Robitaille
* Till Stensitzki
* Tobias Hoppe
* Tobias Megies
* Tony S Yu
* Zach Pincus
* bblay
* bev-a-tron
* drevicko
* endolith
* goir
* mcelrath
* pelson
* pwuertz
* torfbolt
* vbr
We closed a total of 1222 issues, 435 pull requests and 787 regular issues;
this is the full list (generated with the script
:file:`tools/github_stats.py`):
Pull Requests (435):
* :ghpull:`1796`: axes.grid lines using lines.marker settings?
* :ghpull:`1846`: Fix the clippath renderering so that it uses no-clip unsigned chars
* :ghpull:`1853`: fill_betweenx signature fixed
* :ghpull:`1854`: BF - prevent a TypeError for lists of vertices
* :ghpull:`1843`: test_backend_pgf: TypeError
* :ghpull:`1848`: add flushing of stdout to update on key event
* :ghpull:`1802`: Step linestyle
* :ghpull:`1127`: Change spectral to nipy_spectral, update docs, leave aliases
* :ghpull:`1804`: MEP10 - documentation improvements on set_xlabel and text of axes.py
* :ghpull:`1764`: Make loc come after fontdict in set_title. Closes #1759
* :ghpull:`1825`: Work around missing subprocess members on Google App Engine
* :ghpull:`1826`: backend_ps: Do not write to a temporary file unless using an external distiller
* :ghpull:`1827`: MEP10 - documentation improvements on many common plots: scatter plots, ...
* :ghpull:`1834`: finance: Fixed making directories for explicit cachename
* :ghpull:`1832`: BF - correct return type for Axes.get_title
* :ghpull:`1803`: Markers module: PEP8 fixes and MEP10 documentation fixes
* :ghpull:`1795`: MEP10 - refactored hlines and vlines documentation
* :ghpull:`1822`: Improved triinterp_demo pylab example
* :ghpull:`1811`: MultiCursor with additionnal optionnal horizontal bar
* :ghpull:`1817`: Improved test_triinterp_colinear
* :ghpull:`1799`: Corrupt/invalid PDF and EPS files when saving a logscaled plot made with negative values
* :ghpull:`1800`: Agg snapping fixes (for the last time...?) :)
* :ghpull:`1786`: Cubic interpolation for triangular grids
* :ghpull:`1808`: DOC: typo, break lines >80 char, add link to cmaps list
* :ghpull:`1801`: Add .directory files to .gitignore
* :ghpull:`1724`: Re-write stacked step histogram
* :ghpull:`1790`: Fixes problem raised in #1431 (```get_transform``` should not affect ```is_transform_set```)
* :ghpull:`1779`: Bug in postscript backend in Python 3
* :ghpull:`1797`: PEP8 on colors module
* :ghpull:`1291`: Fix image comparison
* :ghpull:`1791`: Symbol not found: _CGAffineTransformIdentity on MacOS 10.6
* :ghpull:`1794`: Fix for #1792
* :ghpull:`1454`: Retool the setup.py infrastructure
* :ghpull:`1785`: Fix test_bbox_inches_tight
* :ghpull:`1784`: Attempt to fix Travis "permission denied" error for Python 3
* :ghpull:`1775`: Issue #1763
* :ghpull:`1615`: Offset is empty with usetex when offset is equal to 1
* :ghpull:`1778`: Fix clip_path_to_rect, add convenience method on Path object for it
* :ghpull:`1669`: Add EventCollection and eventplot
* :ghpull:`1725`: Fix compiler warnings
* :ghpull:`1756`: Remove broken printing_in_wx.py example.
* :ghpull:`1762`: Make cbook safe to import while removing duplicate is_string_like;
* :ghpull:`1252`: Properly passing on horiz-/vertOn to Cursor()
* :ghpull:`1686`: Fix lost ticks
* :ghpull:`1640`: Fix bugs in legend positioning with loc='best'
* :ghpull:`1687`: Update lib/matplotlib/backends/backend_cairo.py
* :ghpull:`1760`: Improved the subplot function documentation and fixed the autogeneration from boilerplate.
* :ghpull:`1716`: PEP8 fixes on the figure module
* :ghpull:`1643`: Clean up code in cbook
* :ghpull:`1755`: Update examples/pylab_examples/histogram_demo_extended.py
* :ghpull:`1497`: Fix for empty collection check in axes.add_collection
* :ghpull:`1685`: Add default savefig directory
* :ghpull:`1698`: Fix bug updating WeakKeyDictionary during iteration
* :ghpull:`1743`: slight tweak to the documentation of `errorbar`
* :ghpull:`1748`: Typo in "Annotation" docstring.
* :ghpull:`1750`: Name missmatch in filetypes.rgba and print_rgb of backend_bases.py
* :ghpull:`1722`: Fix sign of infstr in exceltools.rec2exel
* :ghpull:`1726`: stackplot_test_baseline has different results on 32-bit and 64-bit platforms
* :ghpull:`1577`: PEP8 fixes on the line module
* :ghpull:`1728`: Macosx backend: tweak to coordinates position
* :ghpull:`1718`: Fix set dashes for line collections
* :ghpull:`1721`: rcParams.keys() is not Python 3 compatible
* :ghpull:`1699`: Enable to switch off the removal of comments in csv2rec.
* :ghpull:`1710`: Mixing Arial with mathtext on Windows 8 fails
* :ghpull:`1705`: Qt closeevent fixes for v1.2.x
* :ghpull:`1671`: Feature stack base
* :ghpull:`1684`: Fix hist for log=True and histtype='step'
* :ghpull:`1708`: Fix breaking doc build
* :ghpull:`1644`: NF - Left and right side axes titles
* :ghpull:`1666`: Fix USE_FONTCONFIG=True mode
* :ghpull:`1691`: Fix svg flipping (again)
* :ghpull:`1695`: Alpha kwarg fix
* :ghpull:`1696`: Fixed doc dependency on numpy_ext.numpydoc
* :ghpull:`1665`: MEP10: adding numpydoc and activating autosummary
* :ghpull:`1660`: Explain that matplotlib must be built before the HTML documentation
* :ghpull:`1694`: fixes Issue #1693
* :ghpull:`1682`: Fixed the expected output from test_arrow_patches.test_fancyarrow.
* :ghpull:`1663`: Fix suptitle
* :ghpull:`1675`: fix "alpha" kwarg in errorbar plot
* :ghpull:`1678`: added QtGui.QMainWindow.closeEvent() to make sure the close event
* :ghpull:`1674`: Fix SVG flip when svg.image_noscale is True
* :ghpull:`1680`: Ignore lib/dateutil
* :ghpull:`1626`: Add framealpha argument for legend
* :ghpull:`1642`: remove `import new` from cbook.py
* :ghpull:`1534`: Make `rc_context` available via pyplot interface
* :ghpull:`1672`: Nuke Travis python 3.1 testing
* :ghpull:`1670`: Deprecate mpl
* :ghpull:`1635`: Recompute Wedge path after change of attributes.
* :ghpull:`1498`: use QMainWindow.closeEvent for close events
* :ghpull:`1617`: Legend: Also calc the bbox of the legend when the frame is not drawn. (1.2.x)
* :ghpull:`1585`: Fix Qt canvas resize_event
* :ghpull:`1611`: change handling of legend labels which are None
* :ghpull:`1657`: Add EventCollection and eventplot
* :ghpull:`1641`: PEP8 fixes on the rcsetup module
* :ghpull:`1650`: _png.read_png crashes on Python 3 with urllib.request object
* :ghpull:`1568`: removed deprecated methods from the axes module.
* :ghpull:`1589`: Fix shifted ylabels (Issue #1571)
* :ghpull:`1634`: add scatterpoints to rcParam
* :ghpull:`1654`: added explicit 'zorder' kwarg to `Colection` and `LineCollection`.
* :ghpull:`1653`: Fix #570 - Reversing a 3d axis should now work properly.
* :ghpull:`1651`: WebAgg: pylab compatibility
* :ghpull:`1505`: Issue 1504: changed how `draw` handles alpha in `markerfacecolor`
* :ghpull:`1655`: add get_segments method to collections.LineCollection
* :ghpull:`1652`: Ignore kdevelop4 project files
* :ghpull:`1613`: Using a stricter check to see if Python was installed as a framework.
* :ghpull:`1599`: Ada Lovelace and Grace Murray Hopper images in place of Lena
* :ghpull:`1582`: Linear tri interpolator
* :ghpull:`1637`: change cbook to relative import
* :ghpull:`1618`: Mplot3d/crashfixes
* :ghpull:`1636`: hexbin log scale is broken in matplotlib 1.2.0
* :ghpull:`1624`: implemented inverse transform for Mollweide axes
* :ghpull:`1630`: A disconnected callback cannot be reconnected
* :ghpull:`1139`: Make Axes.stem take at least one argument.
* :ghpull:`1426`: WebAgg backend
* :ghpull:`1606`: Document the C/C++ code guidelines
* :ghpull:`1628`: Fix errorbar zorder v1.2
* :ghpull:`1620`: Fix bug in _AnnotationBase
* :ghpull:`1587`: Mac OS X 10.5 needs an autoreleasepool here to avoid memory leaks. Newer...
* :ghpull:`1597`: new MatplotlibDeprecationWarning class (against master)
* :ghpull:`1596`: new MatplotlibDeprecationWarning class (against 1.2.x)
* :ghpull:`1532`: CXX/Python2/cxx_extensions.cxx:1320: Assertion `ob_refcnt == 0'
* :ghpull:`1604`: Make font_manager ignore KeyErrors for bad fonts
* :ghpull:`1605`: Change printed -> pretty-printed
* :ghpull:`1557`: inverting an axis shouldn't affect the autoscaling setting
* :ghpull:`1603`: ylim=0.0 is not well handled in polar plots
* :ghpull:`1583`: Crash with text.usetex=True and plt.annotate
* :ghpull:`1602`: Fixed typos in docs (squashed version of #1600)
* :ghpull:`1592`: Fix a syntax error in examples (movie_demo.py)
* :ghpull:`1590`: Positional argument specifiers are required by Python 2.6
* :ghpull:`1579`: Updated custom_projection_example.py to work with v1.2 and newer
* :ghpull:`1578`: Fixed blitting in Gtk3Agg backend
* :ghpull:`1573`: fix issue #1572 caused by PR #1081
* :ghpull:`1562`: Mac OS X Backend: Removing clip that is no longer needed
* :ghpull:`1574`: Improvements to Sankey class
* :ghpull:`1536`: ENH: add AVConv movie writer for animations
* :ghpull:`1570`: PEP8 fixes on the tests of the dates module
* :ghpull:`1569`: FIX Removes code that does work from the axes module
* :ghpull:`1531`: fix rendering slowdown with big invisible lines (issue #1256)
* :ghpull:`1398`: PEP8 fixes on dates.py
* :ghpull:`1564`: PEP8-compliance on axes.py (patch 4 / 4)
* :ghpull:`1559`: Workaround for QT cursor bug in dock areas
* :ghpull:`1560`: Remove python2.5 support from texmanager.py
* :ghpull:`1555`: Geo projections getting clobbered by 2to3 when used when python3
* :ghpull:`1477`: alternate fix for issue #997
* :ghpull:`1522`: PEP8-compliance on axes.py (patch 3 / 4)
* :ghpull:`1550`: PEP8 fixes on the module texmanager
* :ghpull:`1289`: Autoscaling and limits in mplot3d.
* :ghpull:`1551`: PEP8 fixes on the spines module
* :ghpull:`1537`: Fix savefig.extension == "auto"
* :ghpull:`1297`: pyplot.plotfile. gridon option added with default from rcParam.
* :ghpull:`1538`: Remove unnecessary clip from Cairo backend; squashed commit
* :ghpull:`1544`: str.format() doesn't work on python 2.6
* :ghpull:`1549`: Add citation page to website
* :ghpull:`1514`: Fix streamplot when color argument has NaNs
* :ghpull:`1081`: Propagate mpl.text.Text instances to the backends and fix documentation
* :ghpull:`1533`: ENH: raise a more informative error
* :ghpull:`1540`: Changed mailinglist archive link.
* :ghpull:`1493`: check `ret == False` in Timer._on_timer
* :ghpull:`1523`: DOC: github ribbon does not cover up index link
* :ghpull:`1515`: set_cmap should not require an active image
* :ghpull:`1489`: Documentation update for specgram
* :ghpull:`1527`: fix 2 html color names
* :ghpull:`1524`: Make README.txt consistent reStructuredText
* :ghpull:`1525`: pgf: documentation enhancements
* :ghpull:`1510`: pgf: documentation enhancements
* :ghpull:`1512`: Reorganize the developer docs
* :ghpull:`1518`: PEP8 compliance on the delaunay module
* :ghpull:`1357`: PEP8 fixes on text.py
* :ghpull:`1469`: PEP8-compliance on axes.py (patch 2 / 4)
* :ghpull:`1470`: Add ``test`` and ``test-coverage`` to Makefile
* :ghpull:`1442`: Add savefig_kwargs to Animation.save() method
* :ghpull:`1503`: DOC: 'inout' option for tick_params direction
* :ghpull:`1494`: Added sphinx documentation for Triangulation
* :ghpull:`1480`: Remove dead code in patches
* :ghpull:`1496`: Correct scatter docstring
* :ghpull:`1472`: FIX extra comma in Sankey.add
* :ghpull:`1471`: Improved checking logic of _check_xyz in contour.py
* :ghpull:`1491`: Reintroduce examples.directory rc parameter
* :ghpull:`1405`: Add angle kwarg to patches.Rectangle
* :ghpull:`1278`: Make arrow docstring mention data transform
* :ghpull:`1355`: Add sym-log normalization.
* :ghpull:`1474`: use an imagemap for the "fork me on github" ribbon
* :ghpull:`1485`: Fix leak of gc's in gtkagg backend
* :ghpull:`1374`: PEP8 fixes on widgets.py
* :ghpull:`1379`: PEP8 fixes on quiver.py
* :ghpull:`1399`: PEP8 fixes on patches
* :ghpull:`1395`: PEP8 fixes on contour.py
* :ghpull:`1464`: PEP8-compliance on axes.py (patch 1 / 4)
* :ghpull:`1400`: PEP8 fixes on offsetbox.py
* :ghpull:`1463`: Document the Gtk3 backends
* :ghpull:`1397`: PEP8 fixes on sankey.py
* :ghpull:`1396`: PEP8 fixes on colors
* :ghpull:`1394`: PEP8 fixes on _cm.py
* :ghpull:`1456`: pgf: documentation fixes
* :ghpull:`1450`: Colorbar edges are different in PDF backend
* :ghpull:`1453`: Remove John Hunter's email from mpl docstring
* :ghpull:`1437`: agg_buffer_to_array.py crashes
* :ghpull:`1445`: JRE - Modified 'use' so that it will only warn if the requested backend ...
* :ghpull:`1439`: Remove all mention of make.osx in README.osx
* :ghpull:`1434`: C++11 narrowing conversions
* :ghpull:`1449`: removed setup.py print statement.
* :ghpull:`1420`: Join bbox_extra_artists and bbox_inches
* :ghpull:`1444`: Colorbar edges are different in PDF backend
* :ghpull:`1436`: Exception message improvement.
* :ghpull:`1431`: Fixed transform=None behaviour on Artists.
* :ghpull:`1430`: Add trove classifiers to setup.py
* :ghpull:`1427`: Fix AttrituteError for .lower on tuple of strings
* :ghpull:`1425`: Rebase of #1418 on v1.2.x
* :ghpull:`1411`: Fix transparent markers in PDF backend. Closes #1410
* :ghpull:`1416`: backend_pdf: optional rgbFace arg in fillp replaces code in draw_markers. Closes #1410
* :ghpull:`1414`: Fix scilimits docstring in ticklabel_format
* :ghpull:`1314`: Range bug fix for pcolor and pcolormesh
* :ghpull:`1323`: Work around a huge memory leak in PySide on Python 3
* :ghpull:`1409`: Make table.py use BBox.union over bbox_all
* :ghpull:`1387`: Make setupegg symlink correct dateutil library
* :ghpull:`1404`: PySide segfaults immediately on Linux
* :ghpull:`1406`: Fix bug when stacking histograms with non-integer weights (v1.2.x branch)
* :ghpull:`1403`: Improve "Report a problem" to "Getting help"
* :ghpull:`1380`: Fix svg writer for StringIO objects
* :ghpull:`1388`: Deprecate original NavigationToolbar
* :ghpull:`1389`: Remove unused autolayout_validator() from rcsetup
* :ghpull:`1390`: Fix bad commandline handling
* :ghpull:`1229`: NF - option to make colorbar extensions rectangles
* :ghpull:`1375`: PEP8 fixes on textpath.py
* :ghpull:`1392`: Fix by Yannick Copin for hist autoscaling bug; closes issue #841
* :ghpull:`1376`: PEP8 fixes on table.py
* :ghpull:`1384`: PEP8 fixes on hatch.py
* :ghpull:`1382`: PEP8 fixes on container.py
* :ghpull:`1378`: PEP8 fixes on stackplot.py
* :ghpull:`1358`: PEP8 fixes on ticker.py
* :ghpull:`1377`: PEP8 fixes on streamplot.py
* :ghpull:`1352`: PEP8 fixes on legend.py
* :ghpull:`1348`: PEP8 fixes on scale.py
* :ghpull:`1367`: Fix typo in transforms.py
* :ghpull:`1345`: PEP8 fixes on backend_bases.py
* :ghpull:`1365`: FIX - travis-ci is failing
* :ghpull:`1351`: PEP8 fixes on transforms.py
* :ghpull:`1349`: PEP8 fixes on type1font.py
* :ghpull:`1360`: PEP8 fixes on tight_layout.py
* :ghpull:`1359`: PEP8 fixes on tight_bbox.py
* :ghpull:`1362`: fixed lognorm clip behavior
* :ghpull:`1350`: PEP8 fixes on units.py
* :ghpull:`1353`: docstring: direct pcolor users to pcolormesh; fix pcolorfast docstring
* :ghpull:`1333`: PEP8 fixes on collections.py
* :ghpull:`1336`: PEP8 fixes to colorbar.py
* :ghpull:`1347`: Remove nonfunctioning cbook.isvector
* :ghpull:`1327`: plt.subplots: Set the visibility of the offset text to false on the shared axes.
* :ghpull:`1335`: PEP8 fixes on cbook.py
* :ghpull:`1334`: PEP8 fixes on blocking_input.py
* :ghpull:`1332`: PEP8 fixes on cm.py
* :ghpull:`1322`: Update Mac build process. Fixes #751
* :ghpull:`1337`: ENH: allow animations to be saved as animated GIFs
* :ghpull:`1340`: fix drawing error of fancyarrow of simple style (v1.2.x)
* :ghpull:`1330`: Tiny (but serious) bugfixes in image.py
* :ghpull:`1298`: Update trisurf to support custom triangulations
* :ghpull:`1286`: backend_pgf: improve handling of temporary directories
* :ghpull:`1316`: very high negative zorder breaks vector graphic rendering
* :ghpull:`1283`: Fix tripcolor with shading='faceted'
* :ghpull:`1320`: Cursor widget now uses widgetlock; closes Issue #156
* :ghpull:`1315`: Add documentation of colorbar issue #1188 to colorbar documentation.
* :ghpull:`1307`: Marker not round with markersize=3
* :ghpull:`1285`: Hide Tk root window until later
* :ghpull:`1305`: Fix pointer syntax error
* :ghpull:`1294`: Update lib/mpl_toolkits/mplot3d/axes3d.py
* :ghpull:`1300`: Pcolormesh and colorbar documentation.
* :ghpull:`1296`: Make Container._remove_method call correctly
* :ghpull:`1293`: Fixed to contour to support the _as_mpl_transform api.
* :ghpull:`1284`: Fix Image Tutorial: plt.imshow instead of mpimg.imshow.
* :ghpull:`1282`: Use file open modes required by csv module
* :ghpull:`1247`: Log axvline
* :ghpull:`1265`: Fixed pre-transform limit calculation bug for contour sets.
* :ghpull:`1275`: backend_pgf: Custom dashstyles and inconcistency with other backends
* :ghpull:`1272`: Fix Objective-C 2.0 error with gcc-4.0
* :ghpull:`1277`: Fixed bug in MaxNLocator.bin_boundaries
* :ghpull:`1273`: Handled baseline image folder identification for non matplotlib projects...
* :ghpull:`1230`: Fix dpi issue for bitmaps on the OS X backend
* :ghpull:`1251`: backend_pgf. Enable custom dashstyles in the pgf backend
* :ghpull:`1264`: Re-added the matplotlib.dates import on axes
* :ghpull:`1271`: Set axis limits in test_stackplot
* :ghpull:`1269`: Fix typo in docstring
* :ghpull:`1260`: Fix BoundaryNorm interpolation with numpy 1.7rc.
* :ghpull:`1261`: Update six.py to version 1.2
* :ghpull:`1255`: Fix test_pickle test.
* :ghpull:`1152`: checkable pan/zoom buttons for QT NavigationToolbar
* :ghpull:`1243`: Broken doc links
* :ghpull:`1242`: Doc tidy up.
* :ghpull:`1224`: Imsave alpha
* :ghpull:`1241`: backend_pgf: fix parsing of CR+LF newlines
* :ghpull:`1233`: Fix mri_demo.py fails with mpl 1.2.0rc1
* :ghpull:`1239`: Fix matplotlib.testing.util.MiniExpect.expect hangs on Windows
* :ghpull:`1240`: backend_pgf: fix parsing of CR+LF newlines
* :ghpull:`1236`: Fix poly_editor.py on Python 3
* :ghpull:`1232`: Enable dynamic updating for the OS X backend
* :ghpull:`1234`: Fix 2to3 and packaging of dateutil
* :ghpull:`1217`: PEP8 fixes on the axis module
* :ghpull:`1176`: Reverted a previous change to artist transform setting. Fixes legend bug.
* :ghpull:`1231`: fix Typesetting in plot() docstring
* :ghpull:`1215`: PEP8 on lib/matplotlib.afm.py
* :ghpull:`1216`: PEP8 fixes on the animation module
* :ghpull:`1208`: FAIL: matplotlib.tests.test_text.test_contains.test
* :ghpull:`1209`: Pass linewidth to Mac context properly
* :ghpull:`847`: Add stacked kwarg to hist and implement stacked hists for step histtype
* :ghpull:`1228`: backend_pgf: pep8 edits
* :ghpull:`1226`: Add dpi kwarg to PIL image.save method for TIFF file.
* :ghpull:`1222`: Don't try to order the contours of TrueType fonts
* :ghpull:`1166`: PEP8 compliance on colors.py
* :ghpull:`1225`: Added deprecation notices for Qt3-based backends.
* :ghpull:`1190`: Update documentation regarding lines.color
* :ghpull:`1202`: refactored grid_spec.tight_layout and fixed #1055
* :ghpull:`1221`: revert PR #1125 and #1201
* :ghpull:`1220`: Figure.show: clarify docstring and error message
* :ghpull:`1167`: PEP8 lib/matplotlib/patches.py
* :ghpull:`1168`: PEP8 compliance on artist.py
* :ghpull:`1213`: Include username in tempdir
* :ghpull:`1182`: Bezier pep8
* :ghpull:`1206`: README and links fixes
* :ghpull:`1192`: Issue835 2: replacement for #835
* :ghpull:`1187`: Add a *simple* arrow example
* :ghpull:`1120`: FAIL: matplotlib.tests.test_transforms.test_pre_transform_plotting.test on Python 3.x
* :ghpull:`714`: Initial rework of gen_gallery.py
* :ghpull:`1150`: the affine matrix is calculated in the display coordinate for interpolation='none'
* :ghpull:`1145`: Fix formatter reset when twin{x,y}() is called
* :ghpull:`1201`: Fix typo in object-oriented API
* :ghpull:`1061`: Add log option to Axes.hist2d
* :ghpull:`1125`: Reduce object-oriented boilerplate for users
* :ghpull:`1195`: Fixed pickle tests to use the BufferIO object for python3 support.
* :ghpull:`1198`: Fixed python2.6 support (by removing use of viewvalues on a dict).
* :ghpull:`1197`: Handled future division changes for python3 (fixes #1194).
* :ghpull:`1162`: FIX nose.tools.assert_is is only supported with python2.7
* :ghpull:`803`: Return arrow collection as 2nd argument of streamplot.
* :ghpull:`1189`: BUG: Fix streamplot when velocity component is exactly zero.
* :ghpull:`1191`: Small bugfixes to the new pickle support.
* :ghpull:`1146`: Fix invalid transformation in InvertedSymmetricalLogTransform.
* :ghpull:`1169`: Subplot.twin[xy] returns a Subplot instance
* :ghpull:`1183`: FIX undefined elements were used at several places in the mlab module
* :ghpull:`498`: get_sample_data still broken on v.1.1.x
* :ghpull:`1170`: Uses tight_layout.get_subplotspec_list to check if all axes are compatible w/ tight_layout
* :ghpull:`1174`: closes #1173 - backporting python2.7 subprocess's check_output to be abl...
* :ghpull:`1175`: Pickling support added. Various whitespace fixes as a result of reading *lots* of code.
* :ghpull:`1098`: suppress exception upon quitting with qt4agg on osx
* :ghpull:`1171`: backend_pgf: handle OSError when testing for xelatex/pdflatex
* :ghpull:`1164`: doc: note contourf hatching in whats_new.rst
* :ghpull:`1153`: PEP8 on artist
* :ghpull:`1163`: tight_layout: fix regression for figures with non SubplotBase Axes
* :ghpull:`1159`: FIX assert_raises cannot be called with ``with\\
* :ghpull:`1160`: backend_pgf: clarifications and fixes in documentation
* :ghpull:`1154`: six inclusion for dateutil on py3 doesn't work
* :ghpull:`1149`: Add Phil Elson's percentage histogram example
* :ghpull:`1158`: FIX - typo in lib/matplotlib/testing/compare.py
* :ghpull:`1155`: workaround for fixed dpi assumption in adjust_bbox_pdf
* :ghpull:`1142`: What's New: Python 3 paragraph
* :ghpull:`1130`: Fix writing pdf on stdout
* :ghpull:`832`: MPLCONFIGDIR tries to be created in read-only home
* :ghpull:`1140`: BUG: Fix fill_between when NaN values are present
* :ghpull:`1144`: Added tripcolor whats_new section.
* :ghpull:`1010`: Port part of errorfill from Tony Yu's mpltools.
* :ghpull:`1141`: backend_pgf: fix parentheses typo
* :ghpull:`1114`: Make grid accept alpha rcParam
* :ghpull:`1124`: PGF backend, fix #1116, #1118 and #1128
* :ghpull:`983`: Issues with dateutil and pytz
* :ghpull:`1133`: figure.py: import warnings, and make imports absolute
* :ghpull:`1132`: clean out obsolete matplotlibrc-related bits to close #1123
* :ghpull:`1131`: Cleanup after the gca test.
* :ghpull:`563`: sankey.add() has mutable defaults
* :ghpull:`731`: Plot limit with transform
* :ghpull:`1107`: Added %s support for labels.
* :ghpull:`774`: Allow automatic use of tight_layout.
* :ghpull:`1122`: DOC: Add streamplot description to What's New page
* :ghpull:`1111`: Fixed transoffset example from failing.
* :ghpull:`840`: Documentation Errors for specgram
* :ghpull:`1088`: For a text artist, if it has a _bbox_patch associated with it, the contains test should reflect this.
* :ghpull:`986`: Add texinfo build target in doc/make.py
* :ghpull:`1076`: PGF backend for XeLaTeX/LuaLaTeX support
* :ghpull:`1090`: External transform api
* :ghpull:`1108`: Fix documentation warnings
* :ghpull:`861`: Add rcfile function (which loads rc params from a given file).
* :ghpull:`1062`: increased the padding on FileMovieWritter.frame_format_str
* :ghpull:`1100`: Doc multi version master
* :ghpull:`1105`: Fixed comma between tests.
* :ghpull:`1095`: Colormap byteorder bug
* :ghpull:`1103`: colorbar: correct error introduced in commit 089024; closes #1102
* :ghpull:`1067`: Support multi-version documentation on the website
* :ghpull:`1031`: Added 'capthick' kwarg to errorbar()
* :ghpull:`1074`: Added broadcasting support in some mplot3d methods
* :ghpull:`1064`: Locator interface
* :ghpull:`850`: Added tripcolor triangle-centred colour values.
* :ghpull:`1093`: Exposed the callback id for the default key press handler so that it can be easily diabled. Fixes #215.
* :ghpull:`1065`: fixed conversion from pt to inch in tight_layout
* :ghpull:`1082`: doc: in pcolormesh docstring, say what it does.
* :ghpull:`1078`: doc: note that IDLE doesn't work with interactive mode.
* :ghpull:`1071`: patches.polygon: fix bug in handling of path closing, #1018.
* :ghpull:`1057`: Contour norm scaling
* :ghpull:`1056`: Test framework cleanups
* :ghpull:`778`: Make tests faster
* :ghpull:`1024`: broken links in the gallery
* :ghpull:`1054`: stix_fonts_demo.py fails with bad refcount
* :ghpull:`960`: Fixed logformatting for non integer bases.
* :ghpull:`897`: GUI icon in Tkinter
* :ghpull:`1053`: Move Python 3 import of reload() to the module that uses it
* :ghpull:`1049`: Update examples/user_interfaces/embedding_in_wx2.py
* :ghpull:`1050`: Update examples/user_interfaces/embedding_in_wx4.py
* :ghpull:`1051`: Update examples/user_interfaces/mathtext_wx.py
* :ghpull:`1052`: Update examples/user_interfaces/wxcursor_demo.py
* :ghpull:`1047`: Enable building on Python 3.3 for Windows
* :ghpull:`1036`: Move all figures to the front with a non-interactive show() in macosx backend.
* :ghpull:`1042`: Three more plot_directive configuration options
* :ghpull:`1022`: contour: map extended ranges to "under" and "over" values
* :ghpull:`1007`: modifying GTK3 example to use pygobject, and adding a simple example to demonstrate NavigationToolbar in GTK3
* :ghpull:`1004`: Added savefig.bbox option to matplotlibrc
* :ghpull:`976`: Fix embedding_in_qt4_wtoolbar.py on Python 3
* :ghpull:`1034`: MdH = allow compilation on recent Mac OS X without compiler warnings
* :ghpull:`1028`: Fix use() so that it is possible to reset the rcParam.
* :ghpull:`1033`: Py3k: reload->imp.reload
* :ghpull:`1002`: Fixed potential overflow exception in the lines.contains() method
* :ghpull:`1025`: Timers
* :ghpull:`989`: Animation subprocess bug
* :ghpull:`898`: Added warnings for easily confusible subplot/subplots invokations
* :ghpull:`963`: Add detection of file extension for file-like objects
* :ghpull:`973`: Fix sankey.py pep8 and py3 compatibility
* :ghpull:`972`: Force closing PIL image files
* :ghpull:`981`: Fix pathpatch3d_demo.py on Python 3
* :ghpull:`980`: Fix basic_units.py on Python 3. PEP8 and PyLint cleanup.
* :ghpull:`1014`: qt4: remove duplicate file save button; and remove trailing whitespace
* :ghpull:`1011`: fix for bug #996 and related issues
* :ghpull:`985`: support current and future FreeBSD releases
* :ghpull:`1000`: Fix traceback for vlines/hlines, when an empty list or array passed in for x/y.
* :ghpull:`994`: Fix bug in pcolorfast introduced by #901
* :ghpull:`993`: Fix typo
* :ghpull:`908`: use Qt window title as default savefig filename
* :ghpull:`971`: Close fd temp file following rec2csv_bad_shape test
* :ghpull:`851`: Simple GUI interface enhancements
* :ghpull:`979`: Fix test_mouseclicks.py on Python 3
* :ghpull:`977`: Fix lasso_selector_demo.py on Python 3
* :ghpull:`970`: Fix tiff and jpeg export via PIL
* :ghpull:`961`: Issue 807 auto minor locator
Issues (787):
* :ghissue:`1839`: matplotlib 1.2.0 doesn't compile with Solaris Studio 12.3 CC
* :ghissue:`1796`: axes.grid lines using lines.marker settings?
* :ghissue:`1846`: Fix the clippath renderering so that it uses no-clip unsigned chars
* :ghissue:`1844`: 1.2.0 regression: custom scale not working
* :ghissue:`1768`: Build fails on travisCI
* :ghissue:`1851`: Fix for the custom scale example
* :ghissue:`1853`: fill_betweenx signature fixed
* :ghissue:`1854`: BF - prevent a TypeError for lists of vertices
* :ghissue:`1840`: BF - prevent a TypeError for lists of vertices in set_marker
* :ghissue:`1842`: test_backend_pgf errors
* :ghissue:`1850`: fill_betweenx signature fixed
* :ghissue:`1843`: test_backend_pgf: TypeError
* :ghissue:`1830`: Keyboard shortcuts work when toolbar not displayed
* :ghissue:`1848`: add flushing of stdout to update on key event
* :ghissue:`1802`: Step linestyle
* :ghissue:`879`: Two colormaps named "spectral"
* :ghissue:`1127`: Change spectral to nipy_spectral, update docs, leave aliases
* :ghissue:`1804`: MEP10 - documentation improvements on set_xlabel and text of axes.py
* :ghissue:`1764`: Make loc come after fontdict in set_title. Closes #1759
* :ghissue:`1759`: Axes3d error on set_title
* :ghissue:`800`: Still another Agg snapping issue.
* :ghissue:`1727`: 'stepfilled' histogram is not filled properly when setting yscale('log')
* :ghissue:`1612`: setupegg is broken on windows
* :ghissue:`1591`: Image being snapped erroneously
* :ghissue:`1845`: Agg clip rendering fix
* :ghissue:`1838`: plot_surface and transposed arrays
* :ghissue:`1825`: Work around missing subprocess members on Google App Engine
* :ghissue:`1826`: backend_ps: Do not write to a temporary file unless using an external distiller
* :ghissue:`1827`: MEP10 - documentation improvements on many common plots: scatter plots, ...
* :ghissue:`1834`: finance: Fixed making directories for explicit cachename
* :ghissue:`1714`: qt4_editor broken: `TransformNode instances can not be copied`
* :ghissue:`1832`: BF - correct return type for Axes.get_title
* :ghissue:`324`: ability to change curves, axes, labels attributes via UI
* :ghissue:`1803`: Markers module: PEP8 fixes and MEP10 documentation fixes
* :ghissue:`1795`: MEP10 - refactored hlines and vlines documentation
* :ghissue:`1819`: Option for disregarding matplotlibrc, for reproducible batch production of plots
* :ghissue:`1822`: Improved triinterp_demo pylab example
* :ghissue:`1820`: griddata: Allow for easy switching between interpolation mechanisms
* :ghissue:`1811`: MultiCursor with additionnal optionnal horizontal bar
* :ghissue:`1817`: Improved test_triinterp_colinear
* :ghissue:`1799`: Corrupt/invalid PDF and EPS files when saving a logscaled plot made with negative values
* :ghissue:`1800`: Agg snapping fixes (for the last time...?) :)
* :ghissue:`1521`: Triangular grid interpolation and refinement
* :ghissue:`1786`: Cubic interpolation for triangular grids
* :ghissue:`1808`: DOC: typo, break lines >80 char, add link to cmaps list
* :ghissue:`1798`: MEP10 - documentation improvements on set_xlabel and text of axes.py
* :ghissue:`1801`: Add .directory files to .gitignore
* :ghissue:`1765`: Unable to Generate Docs
* :ghissue:`1744`: bottom keyword doesn't work for non-stacked histograms
* :ghissue:`1679`: matplotlib-1.2.0: regression in histogram with barstacked drawing?
* :ghissue:`1724`: Re-write stacked step histogram
* :ghissue:`1790`: Fixes problem raised in #1431 (```get_transform``` should not affect ```is_transform_set```)
* :ghissue:`1779`: Bug in postscript backend in Python 3
* :ghissue:`1797`: PEP8 on colors module
* :ghissue:`1291`: Fix image comparison
* :ghissue:`1788`: Lower minimum pyparsing version to 1.5.2
* :ghissue:`1789`: imshow() subplots with shared axes generate unwanted white spaces
* :ghissue:`1793`: font_manager unittest errors
* :ghissue:`1791`: Symbol not found: _CGAffineTransformIdentity on MacOS 10.6
* :ghissue:`1772`: Python 3.3 build failure
* :ghissue:`1794`: Fix for #1792
* :ghissue:`1781`: Issues with installing matplotlib on Travis with Python 3
* :ghissue:`1792`: Matplotlib fails to install pyparsing with Python 2
* :ghissue:`1454`: Retool the setup.py infrastructure
* :ghissue:`1776`: Documentation style suggestion
* :ghissue:`1785`: Fix test_bbox_inches_tight
* :ghissue:`1784`: Attempt to fix Travis "permission denied" error for Python 3
* :ghissue:`1775`: Issue #1763
* :ghissue:`1615`: Offset is empty with usetex when offset is equal to 1
* :ghissue:`1782`: fix copy-to-clipboard in example
* :ghissue:`1778`: Fix clip_path_to_rect, add convenience method on Path object for it
* :ghissue:`1777`: PyList_SetItem return value bug in clip_path_to_rect (_path.cpp).
* :ghissue:`1773`: emf backend doesn't work with StringIO
* :ghissue:`1669`: Add EventCollection and eventplot
* :ghissue:`1774`: ignore singleton dimensions in ndarrays passed to imshow
* :ghissue:`1619`: Arrow with "simple" style is not robust. Code fix included.
* :ghissue:`1725`: Fix compiler warnings
* :ghissue:`1756`: Remove broken printing_in_wx.py example.
* :ghissue:`1094`: Feature request - make it simpler to use full OO interface
* :ghissue:`1457`: Better object-oriented interface for users
* :ghissue:`1762`: Make cbook safe to import while removing duplicate is_string_like;
* :ghissue:`1019`: Repeated is_string_like function
* :ghissue:`1761`: plot_wireframe does not accept vmin, vmax
* :ghissue:`300`: subplot args desription confusing
* :ghissue:`1252`: Properly passing on horiz-/vertOn to Cursor()
* :ghissue:`1632`: Fix build on Ubuntu 12.10
* :ghissue:`1686`: Fix lost ticks
* :ghissue:`1640`: Fix bugs in legend positioning with loc='best'
* :ghissue:`1687`: Update lib/matplotlib/backends/backend_cairo.py
* :ghissue:`1760`: Improved the subplot function documentation and fixed the autogeneration from boilerplate.
* :ghissue:`1647`: WIP: Deprecation of the cbook module
* :ghissue:`1662`: is_string_like existed both in matplotlib and matplotlib.cbook
* :ghissue:`1716`: PEP8 fixes on the figure module
* :ghissue:`1643`: Clean up code in cbook
* :ghissue:`953`: subplot docstring improvement (re #300)
* :ghissue:`1112`: Bad kwargs to savefig
* :ghissue:`1755`: Update examples/pylab_examples/histogram_demo_extended.py
* :ghissue:`1754`: Fixed a typo in histogram example code
* :ghissue:`1490`: empty scatter messes up the limits
* :ghissue:`1497`: Fix for empty collection check in axes.add_collection
* :ghissue:`1685`: Add default savefig directory
* :ghissue:`1698`: Fix bug updating WeakKeyDictionary during iteration
* :ghissue:`1743`: slight tweak to the documentation of `errorbar`
* :ghissue:`1748`: Typo in "Annotation" docstring.
* :ghissue:`1750`: Name missmatch in filetypes.rgba and print_rgb of backend_bases.py
* :ghissue:`1749`: Incompatibility with latest stable Numpy build (v1.7)
* :ghissue:`1722`: Fix sign of infstr in exceltools.rec2exel
* :ghissue:`1126`: Qt4 save dialog not functional on CentOS-5
* :ghissue:`1740`: alpha is not set correctly when using eps format
* :ghissue:`1741`: pcolormesh memory leak
* :ghissue:`1726`: stackplot_test_baseline has different results on 32-bit and 64-bit platforms
* :ghissue:`1577`: PEP8 fixes on the line module
* :ghissue:`1728`: Macosx backend: tweak to coordinates position
* :ghissue:`1701`: dash setting in LineCollection is broken
* :ghissue:`1704`: Contour does not pass a list of linestyles to LineCollection
* :ghissue:`1718`: Fix set dashes for line collections
* :ghissue:`1721`: rcParams.keys() is not Python 3 compatible
* :ghissue:`1723`: Re-write stacked histogram (fixes bugs)
* :ghissue:`1706`: Fix bugs in stacked histograms
* :ghissue:`1401`: RuntimeError: dictionary changed size during iteration from colors.py, 3.3 but not 3.2
* :ghissue:`1699`: Enable to switch off the removal of comments in csv2rec.
* :ghissue:`1710`: Mixing Arial with mathtext on Windows 8 fails
* :ghissue:`1683`: Remove figure from Gcf when it is closed
* :ghissue:`1705`: Qt closeevent fixes for v1.2.x
* :ghissue:`1504`: markerfacecolor/markeredgecolor alpha issue
* :ghissue:`1671`: Feature stack base
* :ghissue:`1075`: fix hist limit issue for step* for both linear and log scale
* :ghissue:`1659`: super hacky fix to issue #1310
* :ghissue:`196`: Axes.hist(...log=True) mishandles y-axis minimum value
* :ghissue:`1029`: Implemented fix to issue 196 on github for log=True and histtype='step'
* :ghissue:`1684`: Fix hist for log=True and histtype='step'
* :ghissue:`1707`: Docs build failure
* :ghissue:`1708`: Fix breaking doc build
* :ghissue:`289`: reproducible research: sys.argv[0] in plot footer
* :ghissue:`1633`: Add rcParam option for number of scatterplot symbols
* :ghissue:`1113`: Bug in ax.arrow()
* :ghissue:`987`: angle/rotate keyword for rectangle
* :ghissue:`775`: TypeError in Axes.get_legend_handles_labels
* :ghissue:`331`: stem function ability to take one argument
* :ghissue:`1644`: NF - Left and right side axes titles
* :ghissue:`1666`: Fix USE_FONTCONFIG=True mode
* :ghissue:`1697`: Fix bug updating WeakKeyDictionary during iteration
* :ghissue:`1691`: Fix svg flipping (again)
* :ghissue:`1695`: Alpha kwarg fix
* :ghissue:`1696`: Fixed doc dependency on numpy_ext.numpydoc
* :ghissue:`1665`: MEP10: adding numpydoc and activating autosummary
* :ghissue:`1660`: Explain that matplotlib must be built before the HTML documentation
* :ghissue:`1693`: saving to *.eps broken on master
* :ghissue:`1694`: fixes Issue #1693
* :ghissue:`1689`: SVG flip issue
* :ghissue:`1681`: Fancy arrow tests are failing
* :ghissue:`1682`: Fixed the expected output from test_arrow_patches.test_fancyarrow.
* :ghissue:`1262`: Using figure.suptitle puts another suptitle on top of any existing one.
* :ghissue:`1663`: Fix suptitle
* :ghissue:`1675`: fix "alpha" kwarg in errorbar plot
* :ghissue:`1610`: plotting legends none
* :ghissue:`1676`: Qt close events don't cascade properly.
* :ghissue:`1678`: added QtGui.QMainWindow.closeEvent() to make sure the close event
* :ghissue:`1673`: Images saved as SVG get upside down when `svg.image_noscale` is True.
* :ghissue:`1674`: Fix SVG flip when svg.image_noscale is True
* :ghissue:`1680`: Ignore lib/dateutil
* :ghissue:`1677`: add changelog for #1626
* :ghissue:`1626`: Add framealpha argument for legend
* :ghissue:`1608`: Incorrect ylabel placement in twinx
* :ghissue:`1642`: remove `import new` from cbook.py
* :ghissue:`1534`: Make `rc_context` available via pyplot interface
* :ghissue:`1672`: Nuke Travis python 3.1 testing
* :ghissue:`1535`: Deprecate mpl.py (was Remove mpl.py)
* :ghissue:`1670`: Deprecate mpl
* :ghissue:`1517`: ENH: Add baseline feature to stackplot.
* :ghissue:`1635`: Recompute Wedge path after change of attributes.
* :ghissue:`1488`: Continue propagating resize event up the chain
* :ghissue:`1498`: use QMainWindow.closeEvent for close events
* :ghissue:`1617`: Legend: Also calc the bbox of the legend when the frame is not drawn. (1.2.x)
* :ghissue:`1585`: Fix Qt canvas resize_event
* :ghissue:`1629`: Update x,y.z values for an existing Line3D object
* :ghissue:`1611`: change handling of legend labels which are None
* :ghissue:`1657`: Add EventCollection and eventplot
* :ghissue:`1641`: PEP8 fixes on the rcsetup module
* :ghissue:`1650`: _png.read_png crashes on Python 3 with urllib.request object
* :ghissue:`1568`: removed deprecated methods from the axes module.
* :ghissue:`1571`: Y-labels shifted
* :ghissue:`1589`: Fix shifted ylabels (Issue #1571)
* :ghissue:`1276`: Fix overwriting suptitle
* :ghissue:`1661`: Fix travis install failure on py31
* :ghissue:`1634`: add scatterpoints to rcParam
* :ghissue:`1654`: added explicit 'zorder' kwarg to `Colection` and `LineCollection`.
* :ghissue:`570`: mplot3d reverse axis behavior
* :ghissue:`1653`: Fix #570 - Reversing a 3d axis should now work properly.
* :ghissue:`1651`: WebAgg: pylab compatibility
* :ghissue:`1638`: web_backend is not installed
* :ghissue:`1505`: Issue 1504: changed how `draw` handles alpha in `markerfacecolor`
* :ghissue:`1655`: add get_segments method to collections.LineCollection
* :ghissue:`1649`: add get_segments method to collections.LineCollection
* :ghissue:`1593`: NameError: global name 'iterable' is not defined
* :ghissue:`1652`: Ignore kdevelop4 project files
* :ghissue:`665`: Mac OSX backend keyboard focus stays in terminal
* :ghissue:`1613`: Using a stricter check to see if Python was installed as a framework.
* :ghissue:`1581`: Provide an alternative to lena.png for two examples that use it.
* :ghissue:`1599`: Ada Lovelace and Grace Murray Hopper images in place of Lena
* :ghissue:`1582`: Linear tri interpolator
* :ghissue:`1637`: change cbook to relative import
* :ghissue:`1645`: add get_segments method to collections.LineCollection - updated
* :ghissue:`1639`: Rename web_static to web_backend in setup.py
* :ghissue:`1618`: Mplot3d/crashfixes
* :ghissue:`1636`: hexbin log scale is broken in matplotlib 1.2.0
* :ghissue:`1624`: implemented inverse transform for Mollweide axes
* :ghissue:`1630`: A disconnected callback cannot be reconnected
* :ghissue:`1139`: Make Axes.stem take at least one argument.
* :ghissue:`1426`: WebAgg backend
* :ghissue:`1606`: Document the C/C++ code guidelines
* :ghissue:`1622`: zorder is not respected by all parts of `errorbar`
* :ghissue:`1628`: Fix errorbar zorder v1.2
* :ghissue:`1625`: saving pgf to a stream is not supported
* :ghissue:`1588`: Annotations appear in incorrect locations
* :ghissue:`1620`: Fix bug in _AnnotationBase
* :ghissue:`1621`: Package for python 3.3 on OS X
* :ghissue:`1616`: Legend: Also calc the bbox of the legend when the frame is not drawn.
* :ghissue:`1587`: Mac OS X 10.5 needs an autoreleasepool here to avoid memory leaks. Newer...
* :ghissue:`1597`: new MatplotlibDeprecationWarning class (against master)
* :ghissue:`1596`: new MatplotlibDeprecationWarning class (against 1.2.x)
* :ghissue:`1532`: CXX/Python2/cxx_extensions.cxx:1320: Assertion `ob_refcnt == 0'
* :ghissue:`1601`: invalid/misconfigured fonts cause the font manager to fail
* :ghissue:`1604`: Make font_manager ignore KeyErrors for bad fonts
* :ghissue:`1605`: Change printed -> pretty-printed
* :ghissue:`1553`: invert_xaxis() accidentially disables autoscaling
* :ghissue:`1557`: inverting an axis shouldn't affect the autoscaling setting
* :ghissue:`1603`: ylim=0.0 is not well handled in polar plots
* :ghissue:`1583`: Crash with text.usetex=True and plt.annotate
* :ghissue:`1584`: triplot(x, y, simplex) should not modify the simplex array as a side effect.
* :ghissue:`1576`: BUG: tri: prevent Triangulation from modifying specified input
* :ghissue:`1602`: Fixed typos in docs (squashed version of #1600)
* :ghissue:`1600`: Fixed typos in matplotlibrc and docs
* :ghissue:`1592`: Fix a syntax error in examples (movie_demo.py)
* :ghissue:`1572`: axes_grid demo broken
* :ghissue:`201`: Drawing rubberband box outside of view crash backend_macosx
* :ghissue:`1038`: osx backend does not allow font changes
* :ghissue:`1590`: Positional argument specifiers are required by Python 2.6
* :ghissue:`1579`: Updated custom_projection_example.py to work with v1.2 and newer
* :ghissue:`1578`: Fixed blitting in Gtk3Agg backend
* :ghissue:`1580`: lena.png is indecent and needs to be removed
* :ghissue:`1573`: fix issue #1572 caused by PR #1081
* :ghissue:`1562`: Mac OS X Backend: Removing clip that is no longer needed
* :ghissue:`1506`: DOC: make example cursor show up in the docs
* :ghissue:`1565`: new MatplotlibDeprecationWarning class
* :ghissue:`776`: ticks based on number of subplots
* :ghissue:`1462`: use plt.subplots() in examples as much as possible
* :ghissue:`1407`: Sankey5
* :ghissue:`1574`: Improvements to Sankey class
* :ghissue:`1536`: ENH: add AVConv movie writer for animations
* :ghissue:`1570`: PEP8 fixes on the tests of the dates module
* :ghissue:`1465`: Undefined elements in axes module
* :ghissue:`1569`: FIX Removes code that does work from the axes module
* :ghissue:`1250`: Fix Travis tests
* :ghissue:`1566`: pylab overwrites user variable(s)
* :ghissue:`1531`: fix rendering slowdown with big invisible lines (issue #1256)
* :ghissue:`1398`: PEP8 fixes on dates.py
* :ghissue:`1564`: PEP8-compliance on axes.py (patch 4 / 4)
* :ghissue:`1559`: Workaround for QT cursor bug in dock areas
* :ghissue:`1552`: Remove python 2.5 stuff from texmanager.py
* :ghissue:`1560`: Remove python2.5 support from texmanager.py
* :ghissue:`1555`: Geo projections getting clobbered by 2to3 when used when python3
* :ghissue:`997`: Delaunay interpolator: support grid whose width or height is 1
* :ghissue:`1477`: alternate fix for issue #997
* :ghissue:`1556`: Invert axis autoscale fix
* :ghissue:`1554`: Geo projections getting clobbered by 2to3 when used when python3
* :ghissue:`1522`: PEP8-compliance on axes.py (patch 3 / 4)
* :ghissue:`1548`: Broken i386 + Python 3 build
* :ghissue:`1550`: PEP8 fixes on the module texmanager
* :ghissue:`783`: mplot3d: scatter (and others) incorrectly auto-scale axes after set_[xyz]lim()
* :ghissue:`1289`: Autoscaling and limits in mplot3d.
* :ghissue:`1551`: PEP8 fixes on the spines module
* :ghissue:`1537`: Fix savefig.extension == "auto"
* :ghissue:`1297`: pyplot.plotfile. gridon option added with default from rcParam.
* :ghissue:`1526`: Remove unnecessary clip cairo
* :ghissue:`1538`: Remove unnecessary clip from Cairo backend; squashed commit
* :ghissue:`1544`: str.format() doesn't work on python 2.6
* :ghissue:`1549`: Add citation page to website
* :ghissue:`1514`: Fix streamplot when color argument has NaNs
* :ghissue:`1487`: MaxNLocator for log-scale
* :ghissue:`1081`: Propagate mpl.text.Text instances to the backends and fix documentation
* :ghissue:`1533`: ENH: raise a more informative error
* :ghissue:`955`: Strange resize behaviour with ImageGrid
* :ghissue:`1003`: Fix for issue #955
* :ghissue:`1546`: Quiver crashes if given matrices
* :ghissue:`1542`: Wrong __version__numpy__
* :ghissue:`1540`: Changed mailinglist archive link.
* :ghissue:`1507`: python setup.py build (in parallel)
* :ghissue:`1492`: MacOSX backend blocks in IPython QtConsole
* :ghissue:`1493`: check `ret == False` in Timer._on_timer
* :ghissue:`1523`: DOC: github ribbon does not cover up index link
* :ghissue:`1515`: set_cmap should not require an active image
* :ghissue:`1500`: comment on http://matplotlib.org/users/pgf.html#pgf-tutorial - minor issue with xits font
* :ghissue:`1489`: Documentation update for specgram
* :ghissue:`1527`: fix 2 html color names
* :ghissue:`1524`: Make README.txt consistent reStructuredText
* :ghissue:`1525`: pgf: documentation enhancements
* :ghissue:`1510`: pgf: documentation enhancements
* :ghissue:`1512`: Reorganize the developer docs
* :ghissue:`1518`: PEP8 compliance on the delaunay module
* :ghissue:`1357`: PEP8 fixes on text.py
* :ghissue:`1469`: PEP8-compliance on axes.py (patch 2 / 4)
* :ghissue:`1470`: Add ``test`` and ``test-coverage`` to Makefile
* :ghissue:`1513`: Problems with image sizes
* :ghissue:`1509`: pgf: draw_image() doesn't store path to png files in the pgf source
* :ghissue:`1516`: set_xticklabels changes font when text.usetex is enabled
* :ghissue:`1442`: Add savefig_kwargs to Animation.save() method
* :ghissue:`1511`: Reorganize developer docs
* :ghissue:`1503`: DOC: 'inout' option for tick_params direction
* :ghissue:`1494`: Added sphinx documentation for Triangulation
* :ghissue:`1480`: Remove dead code in patches
* :ghissue:`1496`: Correct scatter docstring
* :ghissue:`1495`: scatter docstring, minor
* :ghissue:`1472`: FIX extra comma in Sankey.add
* :ghissue:`1471`: Improved checking logic of _check_xyz in contour.py
* :ghissue:`998`: fix for issue #997
* :ghissue:`1479`: Reintroduce examples.directory rc parameter
* :ghissue:`1491`: Reintroduce examples.directory rc parameter
* :ghissue:`1405`: Add angle kwarg to patches.Rectangle
* :ghissue:`1278`: Make arrow docstring mention data transform
* :ghissue:`1475`: make plt.subplot() act as plt.subplot(111)
* :ghissue:`1355`: Add sym-log normalization.
* :ghissue:`1474`: use an imagemap for the "fork me on github" ribbon
* :ghissue:`632`: ENH: More included norms, especially a symlog like norm
* :ghissue:`1466`: Too many open files
* :ghissue:`1485`: Fix leak of gc's in gtkagg backend
* :ghissue:`1484`: V1.2.x Fix leak of gc's in gtkagg backend.
* :ghissue:`1374`: PEP8 fixes on widgets.py
* :ghissue:`1379`: PEP8 fixes on quiver.py
* :ghissue:`1399`: PEP8 fixes on patches
* :ghissue:`1478`: Reintroduce examples.directory rcParams to customize cbook.get_sample_data() lookup location
* :ghissue:`1468`: use an imagemap for the "fork me on github" ribbon
* :ghissue:`1395`: PEP8 fixes on contour.py
* :ghissue:`1473`: offsets.shape(-1,2)
* :ghissue:`1467`: matplotlib 1.2.0 Binary installer for 32-bit Windows for python 2.7 is missing
* :ghissue:`1419`: bbox_extra_artists doesn't work for a table
* :ghissue:`1432`: lengend overlaps graph
* :ghissue:`1464`: PEP8-compliance on axes.py (patch 1 / 4)
* :ghissue:`1400`: PEP8 fixes on offsetbox.py
* :ghissue:`1463`: Document the Gtk3 backends
* :ghissue:`1417`: Pep8 on the axes module
* :ghissue:`1458`: use plt.subplots() in examples as much as possible
* :ghissue:`1459`: Invalid usage suggested in legend docstring
* :ghissue:`1446`: Fix clipping in PDF backend
* :ghissue:`1397`: PEP8 fixes on sankey.py
* :ghissue:`1396`: PEP8 fixes on colors
* :ghissue:`1394`: PEP8 fixes on _cm.py
* :ghissue:`1456`: pgf: documentation fixes
* :ghissue:`1450`: Colorbar edges are different in PDF backend
* :ghissue:`1452`: John Hunter's email address is still listed in matplotlib module docstring.
* :ghissue:`1453`: Remove John Hunter's email from mpl docstring
* :ghissue:`1437`: agg_buffer_to_array.py crashes
* :ghissue:`1447`: yerr argument of bar doesn't work
* :ghissue:`1445`: JRE - Modified 'use' so that it will only warn if the requested backend ...
* :ghissue:`1439`: Remove all mention of make.osx in README.osx
* :ghissue:`108`: Unbundle pycxx
* :ghissue:`1434`: C++11 narrowing conversions
* :ghissue:`1449`: removed setup.py print statement.
* :ghissue:`1443`: Regression in IPython notebook
* :ghissue:`1420`: Join bbox_extra_artists and bbox_inches
* :ghissue:`1444`: Colorbar edges are different in PDF backend
* :ghissue:`1440`: Fix incorrect conversion in PEP8 fixes.
* :ghissue:`1438`: plt.text clips the figure when using bbox_inches='tight'
* :ghissue:`1435`: README.osx still mentions make.osx
* :ghissue:`1433`: Alternative to #1404. Sets the cursor without refering to a FigureManage...
* :ghissue:`1436`: Exception message improvement.
* :ghissue:`1326`: bugfix: creating patches with transform=None
* :ghissue:`1431`: Fixed transform=None behaviour on Artists.
* :ghissue:`1421`: Add table to default_bbox_extra_artists
* :ghissue:`1430`: Add trove classifiers to setup.py
* :ghissue:`1424`: pcolor fails if edgecolors is not a string
* :ghissue:`1427`: Fix AttrituteError for .lower on tuple of strings
* :ghissue:`1425`: Rebase of #1418 on v1.2.x
* :ghissue:`1418`: Tables: Fix get_window_extent for table
* :ghissue:`1411`: Fix transparent markers in PDF backend. Closes #1410
* :ghissue:`1410`: Open markers incorrect in PDF output
* :ghissue:`1416`: backend_pdf: optional rgbFace arg in fillp replaces code in draw_markers. Closes #1410
* :ghissue:`1393`: PEP8 fixes on axes.py
* :ghissue:`682`: Manipulation of legend parameters from the navigation toolbar
* :ghissue:`676`: Error in documentation of matplotlib.pyplot.ticklabel_format
* :ghissue:`1414`: Fix scilimits docstring in ticklabel_format
* :ghissue:`1314`: Range bug fix for pcolor and pcolormesh
* :ghissue:`1323`: Work around a huge memory leak in PySide on Python 3
* :ghissue:`362`: QA on documentation and gallery
* :ghissue:`330`: Matlab fplot
* :ghissue:`304`: scale plot (including labels) to bounding box
* :ghissue:`239`: title does is not displayed correctly, if there is linefeeds
* :ghissue:`235`: hatch linewidth patch
* :ghissue:`229`: collections.PolyCollection set_verts speed-up
* :ghissue:`1385`: replace bbox_all() with Bbox.union()
* :ghissue:`1409`: Make table.py use BBox.union over bbox_all
* :ghissue:`1354`: setupegg.py develop is broken
* :ghissue:`1387`: Make setupegg symlink correct dateutil library
* :ghissue:`1404`: PySide segfaults immediately on Linux
* :ghissue:`1402`: annotate problem when drawing arrows with segments out of axis
* :ghissue:`1361`: Make make.py build docs under python 3
* :ghissue:`1370`: Bug in #847 (stacked histograms)
* :ghissue:`1372`: Fix bug when stacking histograms with non-integer weights
* :ghissue:`1406`: Fix bug when stacking histograms with non-integer weights (v1.2.x branch)
* :ghissue:`1403`: Improve "Report a problem" to "Getting help"
* :ghissue:`1373`: svgwriter not assigned in FigureCanvasSVG.print_svg for StringIO filename
* :ghissue:`1156`: Add a convenience method to rotate a patch
* :ghissue:`1380`: Fix svg writer for StringIO objects
* :ghissue:`1388`: Deprecate original NavigationToolbar
* :ghissue:`1306`: matplotlib breaks programs with arguments that start with --verbose-
* :ghissue:`1344`: DOC: provide convenience url for seachling MLs + mentioned github issues
* :ghissue:`1389`: Remove unused autolayout_validator() from rcsetup
* :ghissue:`1390`: Fix bad commandline handling
* :ghissue:`1229`: NF - option to make colorbar extensions rectangles
* :ghissue:`1375`: PEP8 fixes on textpath.py
* :ghissue:`1392`: Fix by Yannick Copin for hist autoscaling bug; closes issue #841
* :ghissue:`1331`: Fix for issue #841
* :ghissue:`1343`: Date axis formatter problem
* :ghissue:`1376`: PEP8 fixes on table.py
* :ghissue:`1384`: PEP8 fixes on hatch.py
* :ghissue:`1364`: FIXME comment in transforms.py
* :ghissue:`1382`: PEP8 fixes on container.py
* :ghissue:`1378`: PEP8 fixes on stackplot.py
* :ghissue:`1358`: PEP8 fixes on ticker.py
* :ghissue:`1377`: PEP8 fixes on streamplot.py
* :ghissue:`1352`: PEP8 fixes on legend.py
* :ghissue:`1348`: PEP8 fixes on scale.py
* :ghissue:`1367`: Fix typo in transforms.py
* :ghissue:`1345`: PEP8 fixes on backend_bases.py
* :ghissue:`1365`: FIX - travis-ci is failing
* :ghissue:`1351`: PEP8 fixes on transforms.py
* :ghissue:`1349`: PEP8 fixes on type1font.py
* :ghissue:`1360`: PEP8 fixes on tight_layout.py
* :ghissue:`1359`: PEP8 fixes on tight_bbox.py
* :ghissue:`1362`: fixed lognorm clip behavior
* :ghissue:`1346`: Add proxy artist to Axes.fill_between[x] for label support (Issue #1341)
* :ghissue:`1350`: PEP8 fixes on units.py
* :ghissue:`1353`: docstring: direct pcolor users to pcolormesh; fix pcolorfast docstring
* :ghissue:`1333`: PEP8 fixes on collections.py
* :ghissue:`1336`: PEP8 fixes to colorbar.py
* :ghissue:`1347`: Remove nonfunctioning cbook.isvector
* :ghissue:`1327`: plt.subplots: Set the visibility of the offset text to false on the shared axes.
* :ghissue:`1335`: PEP8 fixes on cbook.py
* :ghissue:`1334`: PEP8 fixes on blocking_input.py
* :ghissue:`1332`: PEP8 fixes on cm.py
* :ghissue:`751`: Building on osx with python 3.2
* :ghissue:`1322`: Update Mac build process. Fixes #751
* :ghissue:`1161`: Test fails in lib/matplotlib/tests/test_figure.py fails
* :ghissue:`1337`: ENH: allow animations to be saved as animated GIFs
* :ghissue:`1340`: fix drawing error of fancyarrow of simple style (v1.2.x)
* :ghissue:`1339`: pgf backend producing invisible dot
* :ghissue:`1129`: fix drawing error of fancyarrow of simple style
* :ghissue:`1338`: Travis: suppress logs for installing numpy, nose
* :ghissue:`1330`: Tiny (but serious) bugfixes in image.py
* :ghissue:`1328`: Tiny bugfixes in image.py
* :ghissue:`825`: make.osx with Xcode 4.3
* :ghissue:`1298`: Update trisurf to support custom triangulations
* :ghissue:`1286`: backend_pgf: improve handling of temporary directories