-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathgithub_stats.html
More file actions
1502 lines (1486 loc) · 197 KB
/
github_stats.html
File metadata and controls
1502 lines (1486 loc) · 197 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Github stats — Matplotlib 1.2.1 documentation</title>
<link rel="stylesheet" href="../_static/mpl.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '1.2.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Matplotlib 1.2.1 documentation"
href="../_static/opensearch.xml"/>
<link rel="top" title="Matplotlib 1.2.1 documentation" href="../index.html" />
<link rel="up" title="User’s Guide" href="index.html" />
<link rel="next" title="License" href="license.html" />
<link rel="prev" title="What’s new in matplotlib" href="whats_new.html" />
<link rel="canonical" href="https://matplotlib.org/stable/users/github_stats.html" />
<script data-domain="matplotlib.org" defer="defer" src="https://views.scientific-python.org/js/script.js"></script>
</head>
<body>
<div id="unreleased-message"> You are reading an old version of the documentation (v1.2.1). For the latest version see <a href="https://matplotlib.org/stable/users/github_stats.html">https://matplotlib.org/stable/users/github_stats.html</a></div>
<!-- Piwik -->
<script type="text/javascript">
if ("matplotlib.sourceforge.net" == document.location.hostname ||
"matplotlib.sf.net" == document.location.hostname) {
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/matplotlib/" : "http://apps.sourceforge.net/piwik/matplotlib/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<script type="text/javascript">
if ("matplotlib.sourceforge.net" == document.location.hostname ||
"matplotlib.sf.net" == document.location.hostname) {
piwik_action_name = '';
piwik_idsite = 1;
piwik_url = pkBaseURL + "piwik.php";
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
document.write(unescape('%3Cobject%3E%3Cnoscript%3E%3Cp%3E%3Cimg src="http://apps.sourceforge.net/piwik/matplotlib/piwik.php?idsite=1" alt="piwik"/%3E%3C/p%3E%3C/noscript%3E%3C/object%3E'));
}
</script>
<!-- End Piwik Tag -->
<link rel="shortcut icon" href="_static/favicon.ico">
<!-- The "Fork me on github" ribbon -->
<img style="float: right; margin-bottom: -40px; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" usemap="#ribbonmap"/>
<map name="ribbonmap">
<area shape="poly" coords="15,0,148,-1,148,135" href="https://github.com/matplotlib/matplotlib" title="Fork me on GitHub" />
</map>
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
<a href="../index.html"><img src="../_static/logo2.png" border="0" alt="matplotlib"/></a>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="license.html" title="License"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="whats_new.html" title="What’s new in matplotlib"
accesskey="P">previous</a> |</li>
<li><a href="../index.html">home</a>| </li>
<li><a href="http://www.matplotlib.org/downloads.html">downloads</a>| </li>
<li><a href="../search.html">search</a>| </li>
<li><a href="../examples/index.html">examples</a>| </li>
<li><a href="../gallery.html">gallery</a>| </li>
<li><a href="../citing.html">citation</a>| </li>
<li><a href="../contents.html">docs</a> »</li>
<li><a href="index.html" accesskey="U">User’s Guide</a> »</li>
</ul>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="whats_new.html"
title="previous chapter">What’s new in matplotlib</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="license.html"
title="next chapter">License</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../_sources/users/github_stats.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="id1">
<h1>Github stats<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h1>
<p>GitHub stats for 2012/06/30 - 2013/03/26 (tag: v1.1.1)</p>
<p>These lists are automatically generated, and may be incomplete or contain duplicates.</p>
<p>The following 90 authors contributed 1618 commits.</p>
<ul class="simple">
<li>Aaron Boushley</li>
<li>Adam Ginsburg</li>
<li>Ahmet Bakan</li>
<li>Amy</li>
<li>Andreas Hilboll</li>
<li>Andrew Dawson</li>
<li>Arnaud Gardelein</li>
<li>Ben Gamari</li>
<li>Ben Root</li>
<li>Bradley M. Froehle</li>
<li>Brett Graham</li>
<li>Bussonnier Matthias</li>
<li><ol class="first upperalpha" start="3">
<li>Gohlke</li>
</ol>
</li>
<li>Carl Michal</li>
<li>Chris Beaumont</li>
<li>Christoph Dann</li>
<li>Christoph Gohlke</li>
<li>Corey Farwell</li>
<li>Craig M</li>
<li>Craig Tenney</li>
<li>Damon McDougall</li>
<li>Daniel Hyams</li>
<li>Darren Dale</li>
<li>David Huard</li>
<li>Eric Firing</li>
<li>Ezra Peisach</li>
<li>Francesco Montesano</li>
<li>Gellule Xg</li>
<li>Graham Poulter</li>
<li>Hubert Holin</li>
<li>Ian Thomas</li>
<li>Ignas Anikevicius (gns_ank)</li>
<li>Jack (aka Daniel) Kelly</li>
<li>Jack Kelly</li>
<li>Jae-Joon Lee</li>
<li>James R. Evans</li>
<li>Jan-Philip Gehrcke</li>
<li>Jason Grout</li>
<li>Jens H. Nielsen</li>
<li>Jens Hedegaard Nielsen</li>
<li>Joe Kington</li>
<li>John Hunter</li>
<li>Jonathan Waltman</li>
<li>Jouni K. Seppänen</li>
<li>Lance Hepler</li>
<li>Marc Abramowitz</li>
<li>Martin Spacek</li>
<li>Matt Giuca</li>
<li>Matthew Emmett</li>
<li>Matthias BUSSONNIER</li>
<li>Michael Droettboom</li>
<li>Michiel de Hoon</li>
<li>Mike Kaufman</li>
<li>Neil</li>
<li>Nelle Varoquaux</li>
<li>Nic Eggert</li>
<li>Nick Semenkovich</li>
<li>Nikolay Vyahhi</li>
<li>Paul Ivanov</li>
<li>Pauli Virtanen</li>
<li>Peter Würtz</li>
<li>Phil Elson</li>
<li>Piti Ongmongkolkul</li>
<li>Robert Johansson</li>
<li>Russell Owen</li>
<li>Ryan Dale</li>
<li>Ryan May</li>
<li>Sandro Tosi</li>
<li>Sebastian Pinnau</li>
<li>Simon Cross</li>
<li>Stefan van der Walt</li>
<li>Takafumi Arakaki</li>
<li>Thomas A Caswell</li>
<li>Thomas Kluyver</li>
<li>Thomas Robitaille</li>
<li>Till Stensitzki</li>
<li>Tobias Hoppe</li>
<li>Tobias Megies</li>
<li>Tony S Yu</li>
<li>Zach Pincus</li>
<li>bblay</li>
<li>bev-a-tron</li>
<li>drevicko</li>
<li>endolith</li>
<li>goir</li>
<li>mcelrath</li>
<li>pelson</li>
<li>pwuertz</li>
<li>torfbolt</li>
<li>vbr</li>
</ul>
<p>We closed a total of 1222 issues, 435 pull requests and 787 regular issues;
this is the full list (generated with the script
<tt class="file docutils literal"><span class="pre">tools/github_stats.py</span></tt>):</p>
<p>Pull Requests (435):</p>
<ul class="simple">
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1796/">PR #1796</a>: axes.grid lines using lines.marker settings?</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1846/">PR #1846</a>: Fix the clippath renderering so that it uses no-clip unsigned chars</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1853/">PR #1853</a>: fill_betweenx signature fixed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1854/">PR #1854</a>: BF - prevent a TypeError for lists of vertices</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1843/">PR #1843</a>: test_backend_pgf: TypeError</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1848/">PR #1848</a>: add flushing of stdout to update on key event</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1802/">PR #1802</a>: Step linestyle</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1127/">PR #1127</a>: Change spectral to nipy_spectral, update docs, leave aliases</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1804/">PR #1804</a>: MEP10 - documentation improvements on set_xlabel and text of axes.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1764/">PR #1764</a>: Make loc come after fontdict in set_title. Closes #1759</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1825/">PR #1825</a>: Work around missing subprocess members on Google App Engine</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1826/">PR #1826</a>: backend_ps: Do not write to a temporary file unless using an external distiller</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1827/">PR #1827</a>: MEP10 - documentation improvements on many common plots: scatter plots, ...</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1834/">PR #1834</a>: finance: Fixed making directories for explicit cachename</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1832/">PR #1832</a>: BF - correct return type for Axes.get_title</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1803/">PR #1803</a>: Markers module: PEP8 fixes and MEP10 documentation fixes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1795/">PR #1795</a>: MEP10 - refactored hlines and vlines documentation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1822/">PR #1822</a>: Improved triinterp_demo pylab example</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1811/">PR #1811</a>: MultiCursor with additionnal optionnal horizontal bar</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1817/">PR #1817</a>: Improved test_triinterp_colinear</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1799/">PR #1799</a>: Corrupt/invalid PDF and EPS files when saving a logscaled plot made with negative values</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1800/">PR #1800</a>: Agg snapping fixes (for the last time...?) :)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1786/">PR #1786</a>: Cubic interpolation for triangular grids</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1808/">PR #1808</a>: DOC: typo, break lines >80 char, add link to cmaps list</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1801/">PR #1801</a>: Add .directory files to .gitignore</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1724/">PR #1724</a>: Re-write stacked step histogram</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1790/">PR #1790</a>: Fixes problem raised in #1431 (<tt class="docutils literal"><span class="pre">`get_transform`</span></tt> should not affect <tt class="docutils literal"><span class="pre">`is_transform_set`</span></tt>)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1779/">PR #1779</a>: Bug in postscript backend in Python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1797/">PR #1797</a>: PEP8 on colors module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1291/">PR #1291</a>: Fix image comparison</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1791/">PR #1791</a>: Symbol not found: _CGAffineTransformIdentity on MacOS 10.6</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1794/">PR #1794</a>: Fix for #1792</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1454/">PR #1454</a>: Retool the setup.py infrastructure</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1785/">PR #1785</a>: Fix test_bbox_inches_tight</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1784/">PR #1784</a>: Attempt to fix Travis “permission denied” error for Python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1775/">PR #1775</a>: Issue #1763</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1615/">PR #1615</a>: Offset is empty with usetex when offset is equal to 1</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1778/">PR #1778</a>: Fix clip_path_to_rect, add convenience method on Path object for it</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1669/">PR #1669</a>: Add EventCollection and eventplot</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1725/">PR #1725</a>: Fix compiler warnings</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1756/">PR #1756</a>: Remove broken printing_in_wx.py example.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1762/">PR #1762</a>: Make cbook safe to import while removing duplicate is_string_like;</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1252/">PR #1252</a>: Properly passing on horiz-/vertOn to Cursor()</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1686/">PR #1686</a>: Fix lost ticks</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1640/">PR #1640</a>: Fix bugs in legend positioning with loc=’best’</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1687/">PR #1687</a>: Update lib/matplotlib/backends/backend_cairo.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1760/">PR #1760</a>: Improved the subplot function documentation and fixed the autogeneration from boilerplate.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1716/">PR #1716</a>: PEP8 fixes on the figure module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1643/">PR #1643</a>: Clean up code in cbook</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1755/">PR #1755</a>: Update examples/pylab_examples/histogram_demo_extended.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1497/">PR #1497</a>: Fix for empty collection check in axes.add_collection</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1685/">PR #1685</a>: Add default savefig directory</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1698/">PR #1698</a>: Fix bug updating WeakKeyDictionary during iteration</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1743/">PR #1743</a>: slight tweak to the documentation of <tt class="xref py py-obj docutils literal"><span class="pre">errorbar</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1748/">PR #1748</a>: Typo in “Annotation” docstring.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1750/">PR #1750</a>: Name missmatch in filetypes.rgba and print_rgb of backend_bases.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1722/">PR #1722</a>: Fix sign of infstr in exceltools.rec2exel</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1726/">PR #1726</a>: stackplot_test_baseline has different results on 32-bit and 64-bit platforms</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1577/">PR #1577</a>: PEP8 fixes on the line module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1728/">PR #1728</a>: Macosx backend: tweak to coordinates position</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1718/">PR #1718</a>: Fix set dashes for line collections</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1721/">PR #1721</a>: rcParams.keys() is not Python 3 compatible</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1699/">PR #1699</a>: Enable to switch off the removal of comments in csv2rec.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1710/">PR #1710</a>: Mixing Arial with mathtext on Windows 8 fails</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1705/">PR #1705</a>: Qt closeevent fixes for v1.2.x</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1671/">PR #1671</a>: Feature stack base</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1684/">PR #1684</a>: Fix hist for log=True and histtype=’step’</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1708/">PR #1708</a>: Fix breaking doc build</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1644/">PR #1644</a>: NF - Left and right side axes titles</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1666/">PR #1666</a>: Fix USE_FONTCONFIG=True mode</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1691/">PR #1691</a>: Fix svg flipping (again)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1695/">PR #1695</a>: Alpha kwarg fix</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1696/">PR #1696</a>: Fixed doc dependency on numpy_ext.numpydoc</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1665/">PR #1665</a>: MEP10: adding numpydoc and activating autosummary</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1660/">PR #1660</a>: Explain that matplotlib must be built before the HTML documentation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1694/">PR #1694</a>: fixes Issue #1693</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1682/">PR #1682</a>: Fixed the expected output from test_arrow_patches.test_fancyarrow.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1663/">PR #1663</a>: Fix suptitle</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1675/">PR #1675</a>: fix “alpha” kwarg in errorbar plot</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1678/">PR #1678</a>: added QtGui.QMainWindow.closeEvent() to make sure the close event</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1674/">PR #1674</a>: Fix SVG flip when svg.image_noscale is True</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1680/">PR #1680</a>: Ignore lib/dateutil</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1626/">PR #1626</a>: Add framealpha argument for legend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1642/">PR #1642</a>: remove <tt class="xref py py-obj docutils literal"><span class="pre">import</span> <span class="pre">new</span></tt> from cbook.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1534/">PR #1534</a>: Make <tt class="xref py py-obj docutils literal"><span class="pre">rc_context</span></tt> available via pyplot interface</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1672/">PR #1672</a>: Nuke Travis python 3.1 testing</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1670/">PR #1670</a>: Deprecate mpl</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1635/">PR #1635</a>: Recompute Wedge path after change of attributes.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1498/">PR #1498</a>: use QMainWindow.closeEvent for close events</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1617/">PR #1617</a>: Legend: Also calc the bbox of the legend when the frame is not drawn. (1.2.x)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1585/">PR #1585</a>: Fix Qt canvas resize_event</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1611/">PR #1611</a>: change handling of legend labels which are None</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1657/">PR #1657</a>: Add EventCollection and eventplot</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1641/">PR #1641</a>: PEP8 fixes on the rcsetup module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1650/">PR #1650</a>: _png.read_png crashes on Python 3 with urllib.request object</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1568/">PR #1568</a>: removed deprecated methods from the axes module.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1589/">PR #1589</a>: Fix shifted ylabels (Issue #1571)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1634/">PR #1634</a>: add scatterpoints to rcParam</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1654/">PR #1654</a>: added explicit ‘zorder’ kwarg to <tt class="xref py py-obj docutils literal"><span class="pre">Colection</span></tt> and <tt class="xref py py-obj docutils literal"><span class="pre">LineCollection</span></tt>.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1653/">PR #1653</a>: Fix #570 - Reversing a 3d axis should now work properly.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1651/">PR #1651</a>: WebAgg: pylab compatibility</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1505/">PR #1505</a>: Issue 1504: changed how <tt class="xref py py-obj docutils literal"><span class="pre">draw</span></tt> handles alpha in <tt class="xref py py-obj docutils literal"><span class="pre">markerfacecolor</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1655/">PR #1655</a>: add get_segments method to collections.LineCollection</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1652/">PR #1652</a>: Ignore kdevelop4 project files</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1613/">PR #1613</a>: Using a stricter check to see if Python was installed as a framework.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1599/">PR #1599</a>: Ada Lovelace and Grace Murray Hopper images in place of Lena</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1582/">PR #1582</a>: Linear tri interpolator</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1637/">PR #1637</a>: change cbook to relative import</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1618/">PR #1618</a>: Mplot3d/crashfixes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1636/">PR #1636</a>: hexbin log scale is broken in matplotlib 1.2.0</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1624/">PR #1624</a>: implemented inverse transform for Mollweide axes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1630/">PR #1630</a>: A disconnected callback cannot be reconnected</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1139/">PR #1139</a>: Make Axes.stem take at least one argument.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1426/">PR #1426</a>: WebAgg backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1606/">PR #1606</a>: Document the C/C++ code guidelines</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1628/">PR #1628</a>: Fix errorbar zorder v1.2</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1620/">PR #1620</a>: Fix bug in _AnnotationBase</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1587/">PR #1587</a>: Mac OS X 10.5 needs an autoreleasepool here to avoid memory leaks. Newer...</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1597/">PR #1597</a>: new MatplotlibDeprecationWarning class (against master)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1596/">PR #1596</a>: new MatplotlibDeprecationWarning class (against 1.2.x)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1532/">PR #1532</a>: CXX/Python2/cxx_extensions.cxx:1320: Assertion <a href="#id2"><span class="problematic" id="id3">`</span></a>ob_refcnt == 0’</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1604/">PR #1604</a>: Make font_manager ignore KeyErrors for bad fonts</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1605/">PR #1605</a>: Change printed -> pretty-printed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1557/">PR #1557</a>: inverting an axis shouldn’t affect the autoscaling setting</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1603/">PR #1603</a>: ylim=0.0 is not well handled in polar plots</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1583/">PR #1583</a>: Crash with text.usetex=True and plt.annotate</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1602/">PR #1602</a>: Fixed typos in docs (squashed version of #1600)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1592/">PR #1592</a>: Fix a syntax error in examples (movie_demo.py)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1590/">PR #1590</a>: Positional argument specifiers are required by Python 2.6</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1579/">PR #1579</a>: Updated custom_projection_example.py to work with v1.2 and newer</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1578/">PR #1578</a>: Fixed blitting in Gtk3Agg backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1573/">PR #1573</a>: fix issue #1572 caused by PR #1081</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1562/">PR #1562</a>: Mac OS X Backend: Removing clip that is no longer needed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1574/">PR #1574</a>: Improvements to Sankey class</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1536/">PR #1536</a>: ENH: add AVConv movie writer for animations</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1570/">PR #1570</a>: PEP8 fixes on the tests of the dates module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1569/">PR #1569</a>: FIX Removes code that does work from the axes module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1531/">PR #1531</a>: fix rendering slowdown with big invisible lines (issue #1256)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1398/">PR #1398</a>: PEP8 fixes on dates.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1564/">PR #1564</a>: PEP8-compliance on axes.py (patch 4 / 4)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1559/">PR #1559</a>: Workaround for QT cursor bug in dock areas</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1560/">PR #1560</a>: Remove python2.5 support from texmanager.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1555/">PR #1555</a>: Geo projections getting clobbered by 2to3 when used when python3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1477/">PR #1477</a>: alternate fix for issue #997</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1522/">PR #1522</a>: PEP8-compliance on axes.py (patch 3 / 4)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1550/">PR #1550</a>: PEP8 fixes on the module texmanager</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1289/">PR #1289</a>: Autoscaling and limits in mplot3d.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1551/">PR #1551</a>: PEP8 fixes on the spines module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1537/">PR #1537</a>: Fix savefig.extension == “auto”</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1297/">PR #1297</a>: pyplot.plotfile. gridon option added with default from rcParam.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1538/">PR #1538</a>: Remove unnecessary clip from Cairo backend; squashed commit</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1544/">PR #1544</a>: str.format() doesn’t work on python 2.6</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1549/">PR #1549</a>: Add citation page to website</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1514/">PR #1514</a>: Fix streamplot when color argument has NaNs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1081/">PR #1081</a>: Propagate mpl.text.Text instances to the backends and fix documentation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1533/">PR #1533</a>: ENH: raise a more informative error</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1540/">PR #1540</a>: Changed mailinglist archive link.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1493/">PR #1493</a>: check <tt class="xref py py-obj docutils literal"><span class="pre">ret</span> <span class="pre">==</span> <span class="pre">False</span></tt> in Timer._on_timer</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1523/">PR #1523</a>: DOC: github ribbon does not cover up index link</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1515/">PR #1515</a>: set_cmap should not require an active image</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1489/">PR #1489</a>: Documentation update for specgram</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1527/">PR #1527</a>: fix 2 html color names</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1524/">PR #1524</a>: Make README.txt consistent reStructuredText</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1525/">PR #1525</a>: pgf: documentation enhancements</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1510/">PR #1510</a>: pgf: documentation enhancements</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1512/">PR #1512</a>: Reorganize the developer docs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1518/">PR #1518</a>: PEP8 compliance on the delaunay module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1357/">PR #1357</a>: PEP8 fixes on text.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1469/">PR #1469</a>: PEP8-compliance on axes.py (patch 2 / 4)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1470/">PR #1470</a>: Add <tt class="docutils literal"><span class="pre">test</span></tt> and <tt class="docutils literal"><span class="pre">test-coverage</span></tt> to Makefile</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1442/">PR #1442</a>: Add savefig_kwargs to Animation.save() method</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1503/">PR #1503</a>: DOC: ‘inout’ option for tick_params direction</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1494/">PR #1494</a>: Added sphinx documentation for Triangulation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1480/">PR #1480</a>: Remove dead code in patches</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1496/">PR #1496</a>: Correct scatter docstring</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1472/">PR #1472</a>: FIX extra comma in Sankey.add</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1471/">PR #1471</a>: Improved checking logic of _check_xyz in contour.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1491/">PR #1491</a>: Reintroduce examples.directory rc parameter</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1405/">PR #1405</a>: Add angle kwarg to patches.Rectangle</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1278/">PR #1278</a>: Make arrow docstring mention data transform</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1355/">PR #1355</a>: Add sym-log normalization.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1474/">PR #1474</a>: use an imagemap for the “fork me on github” ribbon</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1485/">PR #1485</a>: Fix leak of gc’s in gtkagg backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1374/">PR #1374</a>: PEP8 fixes on widgets.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1379/">PR #1379</a>: PEP8 fixes on quiver.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1399/">PR #1399</a>: PEP8 fixes on patches</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1395/">PR #1395</a>: PEP8 fixes on contour.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1464/">PR #1464</a>: PEP8-compliance on axes.py (patch 1 / 4)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1400/">PR #1400</a>: PEP8 fixes on offsetbox.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1463/">PR #1463</a>: Document the Gtk3 backends</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1397/">PR #1397</a>: PEP8 fixes on sankey.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1396/">PR #1396</a>: PEP8 fixes on colors</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1394/">PR #1394</a>: PEP8 fixes on _cm.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1456/">PR #1456</a>: pgf: documentation fixes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1450/">PR #1450</a>: Colorbar edges are different in PDF backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1453/">PR #1453</a>: Remove John Hunter’s email from mpl docstring</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1437/">PR #1437</a>: agg_buffer_to_array.py crashes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1445/">PR #1445</a>: JRE - Modified ‘use’ so that it will only warn if the requested backend ...</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1439/">PR #1439</a>: Remove all mention of make.osx in README.osx</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1434/">PR #1434</a>: C++11 narrowing conversions</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1449/">PR #1449</a>: removed setup.py print statement.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1420/">PR #1420</a>: Join bbox_extra_artists and bbox_inches</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1444/">PR #1444</a>: Colorbar edges are different in PDF backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1436/">PR #1436</a>: Exception message improvement.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1431/">PR #1431</a>: Fixed transform=None behaviour on Artists.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1430/">PR #1430</a>: Add trove classifiers to setup.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1427/">PR #1427</a>: Fix AttrituteError for .lower on tuple of strings</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1425/">PR #1425</a>: Rebase of #1418 on v1.2.x</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1411/">PR #1411</a>: Fix transparent markers in PDF backend. Closes #1410</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1416/">PR #1416</a>: backend_pdf: optional rgbFace arg in fillp replaces code in draw_markers. Closes #1410</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1414/">PR #1414</a>: Fix scilimits docstring in ticklabel_format</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1314/">PR #1314</a>: Range bug fix for pcolor and pcolormesh</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1323/">PR #1323</a>: Work around a huge memory leak in PySide on Python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1409/">PR #1409</a>: Make table.py use BBox.union over bbox_all</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1387/">PR #1387</a>: Make setupegg symlink correct dateutil library</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1404/">PR #1404</a>: PySide segfaults immediately on Linux</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1406/">PR #1406</a>: Fix bug when stacking histograms with non-integer weights (v1.2.x branch)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1403/">PR #1403</a>: Improve “Report a problem” to “Getting help”</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1380/">PR #1380</a>: Fix svg writer for StringIO objects</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1388/">PR #1388</a>: Deprecate original NavigationToolbar</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1389/">PR #1389</a>: Remove unused autolayout_validator() from rcsetup</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1390/">PR #1390</a>: Fix bad commandline handling</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1229/">PR #1229</a>: NF - option to make colorbar extensions rectangles</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1375/">PR #1375</a>: PEP8 fixes on textpath.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1392/">PR #1392</a>: Fix by Yannick Copin for hist autoscaling bug; closes issue #841</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1376/">PR #1376</a>: PEP8 fixes on table.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1384/">PR #1384</a>: PEP8 fixes on hatch.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1382/">PR #1382</a>: PEP8 fixes on container.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1378/">PR #1378</a>: PEP8 fixes on stackplot.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1358/">PR #1358</a>: PEP8 fixes on ticker.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1377/">PR #1377</a>: PEP8 fixes on streamplot.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1352/">PR #1352</a>: PEP8 fixes on legend.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1348/">PR #1348</a>: PEP8 fixes on scale.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1367/">PR #1367</a>: Fix typo in transforms.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1345/">PR #1345</a>: PEP8 fixes on backend_bases.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1365/">PR #1365</a>: FIX - travis-ci is failing</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1351/">PR #1351</a>: PEP8 fixes on transforms.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1349/">PR #1349</a>: PEP8 fixes on type1font.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1360/">PR #1360</a>: PEP8 fixes on tight_layout.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1359/">PR #1359</a>: PEP8 fixes on tight_bbox.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1362/">PR #1362</a>: fixed lognorm clip behavior</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1350/">PR #1350</a>: PEP8 fixes on units.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1353/">PR #1353</a>: docstring: direct pcolor users to pcolormesh; fix pcolorfast docstring</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1333/">PR #1333</a>: PEP8 fixes on collections.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1336/">PR #1336</a>: PEP8 fixes to colorbar.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1347/">PR #1347</a>: Remove nonfunctioning cbook.isvector</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1327/">PR #1327</a>: plt.subplots: Set the visibility of the offset text to false on the shared axes.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1335/">PR #1335</a>: PEP8 fixes on cbook.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1334/">PR #1334</a>: PEP8 fixes on blocking_input.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1332/">PR #1332</a>: PEP8 fixes on cm.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1322/">PR #1322</a>: Update Mac build process. Fixes #751</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1337/">PR #1337</a>: ENH: allow animations to be saved as animated GIFs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1340/">PR #1340</a>: fix drawing error of fancyarrow of simple style (v1.2.x)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1330/">PR #1330</a>: Tiny (but serious) bugfixes in image.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1298/">PR #1298</a>: Update trisurf to support custom triangulations</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1286/">PR #1286</a>: backend_pgf: improve handling of temporary directories</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1316/">PR #1316</a>: very high negative zorder breaks vector graphic rendering</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1283/">PR #1283</a>: Fix tripcolor with shading=’faceted’</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1320/">PR #1320</a>: Cursor widget now uses widgetlock; closes Issue #156</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1315/">PR #1315</a>: Add documentation of colorbar issue #1188 to colorbar documentation.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1307/">PR #1307</a>: Marker not round with markersize=3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1285/">PR #1285</a>: Hide Tk root window until later</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1305/">PR #1305</a>: Fix pointer syntax error</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1294/">PR #1294</a>: Update lib/mpl_toolkits/mplot3d/axes3d.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1300/">PR #1300</a>: Pcolormesh and colorbar documentation.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1296/">PR #1296</a>: Make Container._remove_method call correctly</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1293/">PR #1293</a>: Fixed to contour to support the _as_mpl_transform api.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1284/">PR #1284</a>: Fix Image Tutorial: plt.imshow instead of mpimg.imshow.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1282/">PR #1282</a>: Use file open modes required by csv module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1247/">PR #1247</a>: Log axvline</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1265/">PR #1265</a>: Fixed pre-transform limit calculation bug for contour sets.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1275/">PR #1275</a>: backend_pgf: Custom dashstyles and inconcistency with other backends</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1272/">PR #1272</a>: Fix Objective-C 2.0 error with gcc-4.0</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1277/">PR #1277</a>: Fixed bug in MaxNLocator.bin_boundaries</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1273/">PR #1273</a>: Handled baseline image folder identification for non matplotlib projects...</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1230/">PR #1230</a>: Fix dpi issue for bitmaps on the OS X backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1251/">PR #1251</a>: backend_pgf. Enable custom dashstyles in the pgf backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1264/">PR #1264</a>: Re-added the matplotlib.dates import on axes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1271/">PR #1271</a>: Set axis limits in test_stackplot</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1269/">PR #1269</a>: Fix typo in docstring</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1260/">PR #1260</a>: Fix BoundaryNorm interpolation with numpy 1.7rc.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1261/">PR #1261</a>: Update six.py to version 1.2</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1255/">PR #1255</a>: Fix test_pickle test.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1152/">PR #1152</a>: checkable pan/zoom buttons for QT NavigationToolbar</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1243/">PR #1243</a>: Broken doc links</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1242/">PR #1242</a>: Doc tidy up.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1224/">PR #1224</a>: Imsave alpha</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1241/">PR #1241</a>: backend_pgf: fix parsing of CR+LF newlines</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1233/">PR #1233</a>: Fix mri_demo.py fails with mpl 1.2.0rc1</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1239/">PR #1239</a>: Fix matplotlib.testing.util.MiniExpect.expect hangs on Windows</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1240/">PR #1240</a>: backend_pgf: fix parsing of CR+LF newlines</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1236/">PR #1236</a>: Fix poly_editor.py on Python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1232/">PR #1232</a>: Enable dynamic updating for the OS X backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1234/">PR #1234</a>: Fix 2to3 and packaging of dateutil</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1217/">PR #1217</a>: PEP8 fixes on the axis module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1176/">PR #1176</a>: Reverted a previous change to artist transform setting. Fixes legend bug.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1231/">PR #1231</a>: fix Typesetting in plot() docstring</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1215/">PR #1215</a>: PEP8 on lib/matplotlib.afm.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1216/">PR #1216</a>: PEP8 fixes on the animation module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1208/">PR #1208</a>: FAIL: matplotlib.tests.test_text.test_contains.test</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1209/">PR #1209</a>: Pass linewidth to Mac context properly</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/847/">PR #847</a>: Add stacked kwarg to hist and implement stacked hists for step histtype</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1228/">PR #1228</a>: backend_pgf: pep8 edits</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1226/">PR #1226</a>: Add dpi kwarg to PIL image.save method for TIFF file.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1222/">PR #1222</a>: Don’t try to order the contours of TrueType fonts</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1166/">PR #1166</a>: PEP8 compliance on colors.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1225/">PR #1225</a>: Added deprecation notices for Qt3-based backends.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1190/">PR #1190</a>: Update documentation regarding lines.color</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1202/">PR #1202</a>: refactored grid_spec.tight_layout and fixed #1055</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1221/">PR #1221</a>: revert PR #1125 and #1201</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1220/">PR #1220</a>: Figure.show: clarify docstring and error message</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1167/">PR #1167</a>: PEP8 lib/matplotlib/patches.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1168/">PR #1168</a>: PEP8 compliance on artist.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1213/">PR #1213</a>: Include username in tempdir</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1182/">PR #1182</a>: Bezier pep8</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1206/">PR #1206</a>: README and links fixes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1192/">PR #1192</a>: Issue835 2: replacement for #835</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1187/">PR #1187</a>: Add a <em>simple</em> arrow example</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1120/">PR #1120</a>: FAIL: matplotlib.tests.test_transforms.test_pre_transform_plotting.test on Python 3.x</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/714/">PR #714</a>: Initial rework of gen_gallery.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1150/">PR #1150</a>: the affine matrix is calculated in the display coordinate for interpolation=’none’</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1145/">PR #1145</a>: Fix formatter reset when twin{x,y}() is called</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1201/">PR #1201</a>: Fix typo in object-oriented API</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1061/">PR #1061</a>: Add log option to Axes.hist2d</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1125/">PR #1125</a>: Reduce object-oriented boilerplate for users</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1195/">PR #1195</a>: Fixed pickle tests to use the BufferIO object for python3 support.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1198/">PR #1198</a>: Fixed python2.6 support (by removing use of viewvalues on a dict).</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1197/">PR #1197</a>: Handled future division changes for python3 (fixes #1194).</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1162/">PR #1162</a>: FIX nose.tools.assert_is is only supported with python2.7</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/803/">PR #803</a>: Return arrow collection as 2nd argument of streamplot.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1189/">PR #1189</a>: BUG: Fix streamplot when velocity component is exactly zero.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1191/">PR #1191</a>: Small bugfixes to the new pickle support.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1146/">PR #1146</a>: Fix invalid transformation in InvertedSymmetricalLogTransform.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1169/">PR #1169</a>: Subplot.twin[xy] returns a Subplot instance</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1183/">PR #1183</a>: FIX undefined elements were used at several places in the mlab module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/498/">PR #498</a>: get_sample_data still broken on v.1.1.x</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1170/">PR #1170</a>: Uses tight_layout.get_subplotspec_list to check if all axes are compatible w/ tight_layout</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1174/">PR #1174</a>: closes #1173 - backporting python2.7 subprocess’s check_output to be abl...</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1175/">PR #1175</a>: Pickling support added. Various whitespace fixes as a result of reading <em>lots</em> of code.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1098/">PR #1098</a>: suppress exception upon quitting with qt4agg on osx</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1171/">PR #1171</a>: backend_pgf: handle OSError when testing for xelatex/pdflatex</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1164/">PR #1164</a>: doc: note contourf hatching in whats_new.rst</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1153/">PR #1153</a>: PEP8 on artist</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1163/">PR #1163</a>: tight_layout: fix regression for figures with non SubplotBase Axes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1159/">PR #1159</a>: FIX assert_raises cannot be called with <a href="#id4"><span class="problematic" id="id5">``</span></a>with\</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1160/">PR #1160</a>: backend_pgf: clarifications and fixes in documentation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1154/">PR #1154</a>: six inclusion for dateutil on py3 doesn’t work</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1149/">PR #1149</a>: Add Phil Elson’s percentage histogram example</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1158/">PR #1158</a>: FIX - typo in lib/matplotlib/testing/compare.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1155/">PR #1155</a>: workaround for fixed dpi assumption in adjust_bbox_pdf</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1142/">PR #1142</a>: What’s New: Python 3 paragraph</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1130/">PR #1130</a>: Fix writing pdf on stdout</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/832/">PR #832</a>: MPLCONFIGDIR tries to be created in read-only home</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1140/">PR #1140</a>: BUG: Fix fill_between when NaN values are present</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1144/">PR #1144</a>: Added tripcolor whats_new section.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1010/">PR #1010</a>: Port part of errorfill from Tony Yu’s mpltools.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1141/">PR #1141</a>: backend_pgf: fix parentheses typo</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1114/">PR #1114</a>: Make grid accept alpha rcParam</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1124/">PR #1124</a>: PGF backend, fix #1116, #1118 and #1128</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/983/">PR #983</a>: Issues with dateutil and pytz</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1133/">PR #1133</a>: figure.py: import warnings, and make imports absolute</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1132/">PR #1132</a>: clean out obsolete matplotlibrc-related bits to close #1123</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1131/">PR #1131</a>: Cleanup after the gca test.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/563/">PR #563</a>: sankey.add() has mutable defaults</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/731/">PR #731</a>: Plot limit with transform</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1107/">PR #1107</a>: Added %s support for labels.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/774/">PR #774</a>: Allow automatic use of tight_layout.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1122/">PR #1122</a>: DOC: Add streamplot description to What’s New page</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1111/">PR #1111</a>: Fixed transoffset example from failing.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/840/">PR #840</a>: Documentation Errors for specgram</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1088/">PR #1088</a>: For a text artist, if it has a _bbox_patch associated with it, the contains test should reflect this.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/986/">PR #986</a>: Add texinfo build target in doc/make.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1076/">PR #1076</a>: PGF backend for XeLaTeX/LuaLaTeX support</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1090/">PR #1090</a>: External transform api</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1108/">PR #1108</a>: Fix documentation warnings</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/861/">PR #861</a>: Add rcfile function (which loads rc params from a given file).</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1062/">PR #1062</a>: increased the padding on FileMovieWritter.frame_format_str</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1100/">PR #1100</a>: Doc multi version master</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1105/">PR #1105</a>: Fixed comma between tests.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1095/">PR #1095</a>: Colormap byteorder bug</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1103/">PR #1103</a>: colorbar: correct error introduced in commit 089024; closes #1102</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1067/">PR #1067</a>: Support multi-version documentation on the website</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1031/">PR #1031</a>: Added ‘capthick’ kwarg to errorbar()</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1074/">PR #1074</a>: Added broadcasting support in some mplot3d methods</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1064/">PR #1064</a>: Locator interface</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/850/">PR #850</a>: Added tripcolor triangle-centred colour values.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1093/">PR #1093</a>: Exposed the callback id for the default key press handler so that it can be easily diabled. Fixes #215.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1065/">PR #1065</a>: fixed conversion from pt to inch in tight_layout</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1082/">PR #1082</a>: doc: in pcolormesh docstring, say what it does.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1078/">PR #1078</a>: doc: note that IDLE doesn’t work with interactive mode.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1071/">PR #1071</a>: patches.polygon: fix bug in handling of path closing, #1018.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1057/">PR #1057</a>: Contour norm scaling</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1056/">PR #1056</a>: Test framework cleanups</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/778/">PR #778</a>: Make tests faster</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1024/">PR #1024</a>: broken links in the gallery</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1054/">PR #1054</a>: stix_fonts_demo.py fails with bad refcount</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/960/">PR #960</a>: Fixed logformatting for non integer bases.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/897/">PR #897</a>: GUI icon in Tkinter</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1053/">PR #1053</a>: Move Python 3 import of reload() to the module that uses it</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1049/">PR #1049</a>: Update examples/user_interfaces/embedding_in_wx2.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1050/">PR #1050</a>: Update examples/user_interfaces/embedding_in_wx4.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1051/">PR #1051</a>: Update examples/user_interfaces/mathtext_wx.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1052/">PR #1052</a>: Update examples/user_interfaces/wxcursor_demo.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1047/">PR #1047</a>: Enable building on Python 3.3 for Windows</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1036/">PR #1036</a>: Move all figures to the front with a non-interactive show() in macosx backend.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1042/">PR #1042</a>: Three more plot_directive configuration options</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1022/">PR #1022</a>: contour: map extended ranges to “under” and “over” values</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1007/">PR #1007</a>: modifying GTK3 example to use pygobject, and adding a simple example to demonstrate NavigationToolbar in GTK3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1004/">PR #1004</a>: Added savefig.bbox option to matplotlibrc</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/976/">PR #976</a>: Fix embedding_in_qt4_wtoolbar.py on Python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1034/">PR #1034</a>: MdH = allow compilation on recent Mac OS X without compiler warnings</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1028/">PR #1028</a>: Fix use() so that it is possible to reset the rcParam.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1033/">PR #1033</a>: Py3k: reload->imp.reload</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1002/">PR #1002</a>: Fixed potential overflow exception in the lines.contains() method</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1025/">PR #1025</a>: Timers</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/989/">PR #989</a>: Animation subprocess bug</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/898/">PR #898</a>: Added warnings for easily confusible subplot/subplots invokations</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/963/">PR #963</a>: Add detection of file extension for file-like objects</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/973/">PR #973</a>: Fix sankey.py pep8 and py3 compatibility</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/972/">PR #972</a>: Force closing PIL image files</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/981/">PR #981</a>: Fix pathpatch3d_demo.py on Python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/980/">PR #980</a>: Fix basic_units.py on Python 3. PEP8 and PyLint cleanup.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1014/">PR #1014</a>: qt4: remove duplicate file save button; and remove trailing whitespace</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1011/">PR #1011</a>: fix for bug #996 and related issues</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/985/">PR #985</a>: support current and future FreeBSD releases</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1000/">PR #1000</a>: Fix traceback for vlines/hlines, when an empty list or array passed in for x/y.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/994/">PR #994</a>: Fix bug in pcolorfast introduced by #901</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/993/">PR #993</a>: Fix typo</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/908/">PR #908</a>: use Qt window title as default savefig filename</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/971/">PR #971</a>: Close fd temp file following rec2csv_bad_shape test</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/851/">PR #851</a>: Simple GUI interface enhancements</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/979/">PR #979</a>: Fix test_mouseclicks.py on Python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/977/">PR #977</a>: Fix lasso_selector_demo.py on Python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/970/">PR #970</a>: Fix tiff and jpeg export via PIL</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/961/">PR #961</a>: Issue 807 auto minor locator</li>
</ul>
<p>Issues (787):</p>
<ul class="simple">
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1839/">#1839</a>: matplotlib 1.2.0 doesn’t compile with Solaris Studio 12.3 CC</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1796/">#1796</a>: axes.grid lines using lines.marker settings?</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1846/">#1846</a>: Fix the clippath renderering so that it uses no-clip unsigned chars</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1844/">#1844</a>: 1.2.0 regression: custom scale not working</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1768/">#1768</a>: Build fails on travisCI</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1851/">#1851</a>: Fix for the custom scale example</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1853/">#1853</a>: fill_betweenx signature fixed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1854/">#1854</a>: BF - prevent a TypeError for lists of vertices</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1840/">#1840</a>: BF - prevent a TypeError for lists of vertices in set_marker</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1842/">#1842</a>: test_backend_pgf errors</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1850/">#1850</a>: fill_betweenx signature fixed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1843/">#1843</a>: test_backend_pgf: TypeError</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1830/">#1830</a>: Keyboard shortcuts work when toolbar not displayed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1848/">#1848</a>: add flushing of stdout to update on key event</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1802/">#1802</a>: Step linestyle</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/879/">#879</a>: Two colormaps named “spectral”</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1127/">#1127</a>: Change spectral to nipy_spectral, update docs, leave aliases</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1804/">#1804</a>: MEP10 - documentation improvements on set_xlabel and text of axes.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1764/">#1764</a>: Make loc come after fontdict in set_title. Closes #1759</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1759/">#1759</a>: Axes3d error on set_title</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/800/">#800</a>: Still another Agg snapping issue.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1727/">#1727</a>: ‘stepfilled’ histogram is not filled properly when setting yscale(‘log’)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1612/">#1612</a>: setupegg is broken on windows</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1591/">#1591</a>: Image being snapped erroneously</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1845/">#1845</a>: Agg clip rendering fix</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1838/">#1838</a>: plot_surface and transposed arrays</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1825/">#1825</a>: Work around missing subprocess members on Google App Engine</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1826/">#1826</a>: backend_ps: Do not write to a temporary file unless using an external distiller</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1827/">#1827</a>: MEP10 - documentation improvements on many common plots: scatter plots, ...</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1834/">#1834</a>: finance: Fixed making directories for explicit cachename</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1714/">#1714</a>: qt4_editor broken: <tt class="xref py py-obj docutils literal"><span class="pre">TransformNode</span> <span class="pre">instances</span> <span class="pre">can</span> <span class="pre">not</span> <span class="pre">be</span> <span class="pre">copied</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1832/">#1832</a>: BF - correct return type for Axes.get_title</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/324/">#324</a>: ability to change curves, axes, labels attributes via UI</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1803/">#1803</a>: Markers module: PEP8 fixes and MEP10 documentation fixes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1795/">#1795</a>: MEP10 - refactored hlines and vlines documentation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1819/">#1819</a>: Option for disregarding matplotlibrc, for reproducible batch production of plots</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1822/">#1822</a>: Improved triinterp_demo pylab example</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1820/">#1820</a>: griddata: Allow for easy switching between interpolation mechanisms</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1811/">#1811</a>: MultiCursor with additionnal optionnal horizontal bar</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1817/">#1817</a>: Improved test_triinterp_colinear</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1799/">#1799</a>: Corrupt/invalid PDF and EPS files when saving a logscaled plot made with negative values</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1800/">#1800</a>: Agg snapping fixes (for the last time...?) :)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1521/">#1521</a>: Triangular grid interpolation and refinement</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1786/">#1786</a>: Cubic interpolation for triangular grids</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1808/">#1808</a>: DOC: typo, break lines >80 char, add link to cmaps list</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1798/">#1798</a>: MEP10 - documentation improvements on set_xlabel and text of axes.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1801/">#1801</a>: Add .directory files to .gitignore</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1765/">#1765</a>: Unable to Generate Docs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1744/">#1744</a>: bottom keyword doesn’t work for non-stacked histograms</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1679/">#1679</a>: matplotlib-1.2.0: regression in histogram with barstacked drawing?</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1724/">#1724</a>: Re-write stacked step histogram</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1790/">#1790</a>: Fixes problem raised in #1431 (<tt class="docutils literal"><span class="pre">`get_transform`</span></tt> should not affect <tt class="docutils literal"><span class="pre">`is_transform_set`</span></tt>)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1779/">#1779</a>: Bug in postscript backend in Python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1797/">#1797</a>: PEP8 on colors module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1291/">#1291</a>: Fix image comparison</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1788/">#1788</a>: Lower minimum pyparsing version to 1.5.2</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1789/">#1789</a>: imshow() subplots with shared axes generate unwanted white spaces</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1793/">#1793</a>: font_manager unittest errors</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1791/">#1791</a>: Symbol not found: _CGAffineTransformIdentity on MacOS 10.6</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1772/">#1772</a>: Python 3.3 build failure</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1794/">#1794</a>: Fix for #1792</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1781/">#1781</a>: Issues with installing matplotlib on Travis with Python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1792/">#1792</a>: Matplotlib fails to install pyparsing with Python 2</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1454/">#1454</a>: Retool the setup.py infrastructure</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1776/">#1776</a>: Documentation style suggestion</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1785/">#1785</a>: Fix test_bbox_inches_tight</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1784/">#1784</a>: Attempt to fix Travis “permission denied” error for Python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1775/">#1775</a>: Issue #1763</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1615/">#1615</a>: Offset is empty with usetex when offset is equal to 1</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1782/">#1782</a>: fix copy-to-clipboard in example</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1778/">#1778</a>: Fix clip_path_to_rect, add convenience method on Path object for it</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1777/">#1777</a>: PyList_SetItem return value bug in clip_path_to_rect (_path.cpp).</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1773/">#1773</a>: emf backend doesn’t work with StringIO</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1669/">#1669</a>: Add EventCollection and eventplot</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1774/">#1774</a>: ignore singleton dimensions in ndarrays passed to imshow</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1619/">#1619</a>: Arrow with “simple” style is not robust. Code fix included.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1725/">#1725</a>: Fix compiler warnings</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1756/">#1756</a>: Remove broken printing_in_wx.py example.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1094/">#1094</a>: Feature request - make it simpler to use full OO interface</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1457/">#1457</a>: Better object-oriented interface for users</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1762/">#1762</a>: Make cbook safe to import while removing duplicate is_string_like;</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1019/">#1019</a>: Repeated is_string_like function</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1761/">#1761</a>: plot_wireframe does not accept vmin, vmax</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/300/">#300</a>: subplot args desription confusing</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1252/">#1252</a>: Properly passing on horiz-/vertOn to Cursor()</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1632/">#1632</a>: Fix build on Ubuntu 12.10</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1686/">#1686</a>: Fix lost ticks</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1640/">#1640</a>: Fix bugs in legend positioning with loc=’best’</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1687/">#1687</a>: Update lib/matplotlib/backends/backend_cairo.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1760/">#1760</a>: Improved the subplot function documentation and fixed the autogeneration from boilerplate.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1647/">#1647</a>: WIP: Deprecation of the cbook module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1662/">#1662</a>: is_string_like existed both in matplotlib and matplotlib.cbook</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1716/">#1716</a>: PEP8 fixes on the figure module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1643/">#1643</a>: Clean up code in cbook</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/953/">#953</a>: subplot docstring improvement (re #300)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1112/">#1112</a>: Bad kwargs to savefig</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1755/">#1755</a>: Update examples/pylab_examples/histogram_demo_extended.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1754/">#1754</a>: Fixed a typo in histogram example code</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1490/">#1490</a>: empty scatter messes up the limits</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1497/">#1497</a>: Fix for empty collection check in axes.add_collection</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1685/">#1685</a>: Add default savefig directory</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1698/">#1698</a>: Fix bug updating WeakKeyDictionary during iteration</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1743/">#1743</a>: slight tweak to the documentation of <tt class="xref py py-obj docutils literal"><span class="pre">errorbar</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1748/">#1748</a>: Typo in “Annotation” docstring.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1750/">#1750</a>: Name missmatch in filetypes.rgba and print_rgb of backend_bases.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1749/">#1749</a>: Incompatibility with latest stable Numpy build (v1.7)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1722/">#1722</a>: Fix sign of infstr in exceltools.rec2exel</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1126/">#1126</a>: Qt4 save dialog not functional on CentOS-5</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1740/">#1740</a>: alpha is not set correctly when using eps format</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1741/">#1741</a>: pcolormesh memory leak</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1726/">#1726</a>: stackplot_test_baseline has different results on 32-bit and 64-bit platforms</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1577/">#1577</a>: PEP8 fixes on the line module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1728/">#1728</a>: Macosx backend: tweak to coordinates position</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1701/">#1701</a>: dash setting in LineCollection is broken</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1704/">#1704</a>: Contour does not pass a list of linestyles to LineCollection</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1718/">#1718</a>: Fix set dashes for line collections</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1721/">#1721</a>: rcParams.keys() is not Python 3 compatible</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1723/">#1723</a>: Re-write stacked histogram (fixes bugs)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1706/">#1706</a>: Fix bugs in stacked histograms</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1401/">#1401</a>: RuntimeError: dictionary changed size during iteration from colors.py, 3.3 but not 3.2</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1699/">#1699</a>: Enable to switch off the removal of comments in csv2rec.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1710/">#1710</a>: Mixing Arial with mathtext on Windows 8 fails</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1683/">#1683</a>: Remove figure from Gcf when it is closed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1705/">#1705</a>: Qt closeevent fixes for v1.2.x</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1504/">#1504</a>: markerfacecolor/markeredgecolor alpha issue</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1671/">#1671</a>: Feature stack base</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1075/">#1075</a>: fix hist limit issue for step* for both linear and log scale</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1659/">#1659</a>: super hacky fix to issue #1310</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/196/">#196</a>: Axes.hist(...log=True) mishandles y-axis minimum value</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1029/">#1029</a>: Implemented fix to issue 196 on github for log=True and histtype=’step’</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1684/">#1684</a>: Fix hist for log=True and histtype=’step’</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1707/">#1707</a>: Docs build failure</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1708/">#1708</a>: Fix breaking doc build</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/289/">#289</a>: reproducible research: sys.argv[0] in plot footer</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1633/">#1633</a>: Add rcParam option for number of scatterplot symbols</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1113/">#1113</a>: Bug in ax.arrow()</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/987/">#987</a>: angle/rotate keyword for rectangle</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/775/">#775</a>: TypeError in Axes.get_legend_handles_labels</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/331/">#331</a>: stem function ability to take one argument</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1644/">#1644</a>: NF - Left and right side axes titles</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1666/">#1666</a>: Fix USE_FONTCONFIG=True mode</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1697/">#1697</a>: Fix bug updating WeakKeyDictionary during iteration</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1691/">#1691</a>: Fix svg flipping (again)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1695/">#1695</a>: Alpha kwarg fix</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1696/">#1696</a>: Fixed doc dependency on numpy_ext.numpydoc</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1665/">#1665</a>: MEP10: adding numpydoc and activating autosummary</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1660/">#1660</a>: Explain that matplotlib must be built before the HTML documentation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1693/">#1693</a>: saving to <a href="#id6"><span class="problematic" id="id7">*</span></a>.eps broken on master</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1694/">#1694</a>: fixes Issue #1693</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1689/">#1689</a>: SVG flip issue</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1681/">#1681</a>: Fancy arrow tests are failing</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1682/">#1682</a>: Fixed the expected output from test_arrow_patches.test_fancyarrow.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1262/">#1262</a>: Using figure.suptitle puts another suptitle on top of any existing one.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1663/">#1663</a>: Fix suptitle</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1675/">#1675</a>: fix “alpha” kwarg in errorbar plot</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1610/">#1610</a>: plotting legends none</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1676/">#1676</a>: Qt close events don’t cascade properly.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1678/">#1678</a>: added QtGui.QMainWindow.closeEvent() to make sure the close event</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1673/">#1673</a>: Images saved as SVG get upside down when <tt class="xref py py-obj docutils literal"><span class="pre">svg.image_noscale</span></tt> is True.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1674/">#1674</a>: Fix SVG flip when svg.image_noscale is True</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1680/">#1680</a>: Ignore lib/dateutil</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1677/">#1677</a>: add changelog for #1626</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1626/">#1626</a>: Add framealpha argument for legend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1608/">#1608</a>: Incorrect ylabel placement in twinx</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1642/">#1642</a>: remove <tt class="xref py py-obj docutils literal"><span class="pre">import</span> <span class="pre">new</span></tt> from cbook.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1534/">#1534</a>: Make <tt class="xref py py-obj docutils literal"><span class="pre">rc_context</span></tt> available via pyplot interface</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1672/">#1672</a>: Nuke Travis python 3.1 testing</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1535/">#1535</a>: Deprecate mpl.py (was Remove mpl.py)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1670/">#1670</a>: Deprecate mpl</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1517/">#1517</a>: ENH: Add baseline feature to stackplot.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1635/">#1635</a>: Recompute Wedge path after change of attributes.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1488/">#1488</a>: Continue propagating resize event up the chain</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1498/">#1498</a>: use QMainWindow.closeEvent for close events</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1617/">#1617</a>: Legend: Also calc the bbox of the legend when the frame is not drawn. (1.2.x)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1585/">#1585</a>: Fix Qt canvas resize_event</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1629/">#1629</a>: Update x,y.z values for an existing Line3D object</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1611/">#1611</a>: change handling of legend labels which are None</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1657/">#1657</a>: Add EventCollection and eventplot</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1641/">#1641</a>: PEP8 fixes on the rcsetup module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1650/">#1650</a>: _png.read_png crashes on Python 3 with urllib.request object</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1568/">#1568</a>: removed deprecated methods from the axes module.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1571/">#1571</a>: Y-labels shifted</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1589/">#1589</a>: Fix shifted ylabels (Issue #1571)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1276/">#1276</a>: Fix overwriting suptitle</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1661/">#1661</a>: Fix travis install failure on py31</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1634/">#1634</a>: add scatterpoints to rcParam</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1654/">#1654</a>: added explicit ‘zorder’ kwarg to <tt class="xref py py-obj docutils literal"><span class="pre">Colection</span></tt> and <tt class="xref py py-obj docutils literal"><span class="pre">LineCollection</span></tt>.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/570/">#570</a>: mplot3d reverse axis behavior</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1653/">#1653</a>: Fix #570 - Reversing a 3d axis should now work properly.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1651/">#1651</a>: WebAgg: pylab compatibility</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1638/">#1638</a>: web_backend is not installed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1505/">#1505</a>: Issue 1504: changed how <tt class="xref py py-obj docutils literal"><span class="pre">draw</span></tt> handles alpha in <tt class="xref py py-obj docutils literal"><span class="pre">markerfacecolor</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1655/">#1655</a>: add get_segments method to collections.LineCollection</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1649/">#1649</a>: add get_segments method to collections.LineCollection</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1593/">#1593</a>: NameError: global name ‘iterable’ is not defined</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1652/">#1652</a>: Ignore kdevelop4 project files</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/665/">#665</a>: Mac OSX backend keyboard focus stays in terminal</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1613/">#1613</a>: Using a stricter check to see if Python was installed as a framework.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1581/">#1581</a>: Provide an alternative to lena.png for two examples that use it.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1599/">#1599</a>: Ada Lovelace and Grace Murray Hopper images in place of Lena</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1582/">#1582</a>: Linear tri interpolator</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1637/">#1637</a>: change cbook to relative import</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1645/">#1645</a>: add get_segments method to collections.LineCollection - updated</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1639/">#1639</a>: Rename web_static to web_backend in setup.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1618/">#1618</a>: Mplot3d/crashfixes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1636/">#1636</a>: hexbin log scale is broken in matplotlib 1.2.0</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1624/">#1624</a>: implemented inverse transform for Mollweide axes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1630/">#1630</a>: A disconnected callback cannot be reconnected</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1139/">#1139</a>: Make Axes.stem take at least one argument.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1426/">#1426</a>: WebAgg backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1606/">#1606</a>: Document the C/C++ code guidelines</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1622/">#1622</a>: zorder is not respected by all parts of <tt class="xref py py-obj docutils literal"><span class="pre">errorbar</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1628/">#1628</a>: Fix errorbar zorder v1.2</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1625/">#1625</a>: saving pgf to a stream is not supported</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1588/">#1588</a>: Annotations appear in incorrect locations</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1620/">#1620</a>: Fix bug in _AnnotationBase</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1621/">#1621</a>: Package for python 3.3 on OS X</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1616/">#1616</a>: Legend: Also calc the bbox of the legend when the frame is not drawn.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1587/">#1587</a>: Mac OS X 10.5 needs an autoreleasepool here to avoid memory leaks. Newer...</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1597/">#1597</a>: new MatplotlibDeprecationWarning class (against master)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1596/">#1596</a>: new MatplotlibDeprecationWarning class (against 1.2.x)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1532/">#1532</a>: CXX/Python2/cxx_extensions.cxx:1320: Assertion <a href="#id8"><span class="problematic" id="id9">`</span></a>ob_refcnt == 0’</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1601/">#1601</a>: invalid/misconfigured fonts cause the font manager to fail</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1604/">#1604</a>: Make font_manager ignore KeyErrors for bad fonts</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1605/">#1605</a>: Change printed -> pretty-printed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1553/">#1553</a>: invert_xaxis() accidentially disables autoscaling</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1557/">#1557</a>: inverting an axis shouldn’t affect the autoscaling setting</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1603/">#1603</a>: ylim=0.0 is not well handled in polar plots</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1583/">#1583</a>: Crash with text.usetex=True and plt.annotate</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1584/">#1584</a>: triplot(x, y, simplex) should not modify the simplex array as a side effect.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1576/">#1576</a>: BUG: tri: prevent Triangulation from modifying specified input</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1602/">#1602</a>: Fixed typos in docs (squashed version of #1600)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1600/">#1600</a>: Fixed typos in matplotlibrc and docs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1592/">#1592</a>: Fix a syntax error in examples (movie_demo.py)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1572/">#1572</a>: axes_grid demo broken</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/201/">#201</a>: Drawing rubberband box outside of view crash backend_macosx</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1038/">#1038</a>: osx backend does not allow font changes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1590/">#1590</a>: Positional argument specifiers are required by Python 2.6</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1579/">#1579</a>: Updated custom_projection_example.py to work with v1.2 and newer</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1578/">#1578</a>: Fixed blitting in Gtk3Agg backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1580/">#1580</a>: lena.png is indecent and needs to be removed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1573/">#1573</a>: fix issue #1572 caused by PR #1081</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1562/">#1562</a>: Mac OS X Backend: Removing clip that is no longer needed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1506/">#1506</a>: DOC: make example cursor show up in the docs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1565/">#1565</a>: new MatplotlibDeprecationWarning class</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/776/">#776</a>: ticks based on number of subplots</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1462/">#1462</a>: use plt.subplots() in examples as much as possible</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1407/">#1407</a>: Sankey5</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1574/">#1574</a>: Improvements to Sankey class</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1536/">#1536</a>: ENH: add AVConv movie writer for animations</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1570/">#1570</a>: PEP8 fixes on the tests of the dates module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1465/">#1465</a>: Undefined elements in axes module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1569/">#1569</a>: FIX Removes code that does work from the axes module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1250/">#1250</a>: Fix Travis tests</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1566/">#1566</a>: pylab overwrites user variable(s)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1531/">#1531</a>: fix rendering slowdown with big invisible lines (issue #1256)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1398/">#1398</a>: PEP8 fixes on dates.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1564/">#1564</a>: PEP8-compliance on axes.py (patch 4 / 4)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1559/">#1559</a>: Workaround for QT cursor bug in dock areas</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1552/">#1552</a>: Remove python 2.5 stuff from texmanager.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1560/">#1560</a>: Remove python2.5 support from texmanager.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1555/">#1555</a>: Geo projections getting clobbered by 2to3 when used when python3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/997/">#997</a>: Delaunay interpolator: support grid whose width or height is 1</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1477/">#1477</a>: alternate fix for issue #997</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1556/">#1556</a>: Invert axis autoscale fix</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1554/">#1554</a>: Geo projections getting clobbered by 2to3 when used when python3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1522/">#1522</a>: PEP8-compliance on axes.py (patch 3 / 4)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1548/">#1548</a>: Broken i386 + Python 3 build</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1550/">#1550</a>: PEP8 fixes on the module texmanager</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/783/">#783</a>: mplot3d: scatter (and others) incorrectly auto-scale axes after set_[xyz]lim()</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1289/">#1289</a>: Autoscaling and limits in mplot3d.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1551/">#1551</a>: PEP8 fixes on the spines module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1537/">#1537</a>: Fix savefig.extension == “auto”</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1297/">#1297</a>: pyplot.plotfile. gridon option added with default from rcParam.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1526/">#1526</a>: Remove unnecessary clip cairo</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1538/">#1538</a>: Remove unnecessary clip from Cairo backend; squashed commit</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1544/">#1544</a>: str.format() doesn’t work on python 2.6</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1549/">#1549</a>: Add citation page to website</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1514/">#1514</a>: Fix streamplot when color argument has NaNs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1487/">#1487</a>: MaxNLocator for log-scale</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1081/">#1081</a>: Propagate mpl.text.Text instances to the backends and fix documentation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1533/">#1533</a>: ENH: raise a more informative error</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/955/">#955</a>: Strange resize behaviour with ImageGrid</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1003/">#1003</a>: Fix for issue #955</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1546/">#1546</a>: Quiver crashes if given matrices</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1542/">#1542</a>: Wrong __version__numpy__</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1540/">#1540</a>: Changed mailinglist archive link.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1507/">#1507</a>: python setup.py build (in parallel)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1492/">#1492</a>: MacOSX backend blocks in IPython QtConsole</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1493/">#1493</a>: check <tt class="xref py py-obj docutils literal"><span class="pre">ret</span> <span class="pre">==</span> <span class="pre">False</span></tt> in Timer._on_timer</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1523/">#1523</a>: DOC: github ribbon does not cover up index link</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1515/">#1515</a>: set_cmap should not require an active image</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1500/">#1500</a>: comment on <a class="reference external" href="http://matplotlib.org/users/pgf.html#pgf-tutorial">http://matplotlib.org/users/pgf.html#pgf-tutorial</a> - minor issue with xits font</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1489/">#1489</a>: Documentation update for specgram</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1527/">#1527</a>: fix 2 html color names</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1524/">#1524</a>: Make README.txt consistent reStructuredText</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1525/">#1525</a>: pgf: documentation enhancements</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1510/">#1510</a>: pgf: documentation enhancements</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1512/">#1512</a>: Reorganize the developer docs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1518/">#1518</a>: PEP8 compliance on the delaunay module</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1357/">#1357</a>: PEP8 fixes on text.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1469/">#1469</a>: PEP8-compliance on axes.py (patch 2 / 4)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1470/">#1470</a>: Add <tt class="docutils literal"><span class="pre">test</span></tt> and <tt class="docutils literal"><span class="pre">test-coverage</span></tt> to Makefile</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1513/">#1513</a>: Problems with image sizes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1509/">#1509</a>: pgf: draw_image() doesn’t store path to png files in the pgf source</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1516/">#1516</a>: set_xticklabels changes font when text.usetex is enabled</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1442/">#1442</a>: Add savefig_kwargs to Animation.save() method</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1511/">#1511</a>: Reorganize developer docs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1503/">#1503</a>: DOC: ‘inout’ option for tick_params direction</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1494/">#1494</a>: Added sphinx documentation for Triangulation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1480/">#1480</a>: Remove dead code in patches</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1496/">#1496</a>: Correct scatter docstring</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1495/">#1495</a>: scatter docstring, minor</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1472/">#1472</a>: FIX extra comma in Sankey.add</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1471/">#1471</a>: Improved checking logic of _check_xyz in contour.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/998/">#998</a>: fix for issue #997</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1479/">#1479</a>: Reintroduce examples.directory rc parameter</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1491/">#1491</a>: Reintroduce examples.directory rc parameter</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1405/">#1405</a>: Add angle kwarg to patches.Rectangle</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1278/">#1278</a>: Make arrow docstring mention data transform</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1475/">#1475</a>: make plt.subplot() act as plt.subplot(111)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1355/">#1355</a>: Add sym-log normalization.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1474/">#1474</a>: use an imagemap for the “fork me on github” ribbon</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/632/">#632</a>: ENH: More included norms, especially a symlog like norm</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1466/">#1466</a>: Too many open files</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1485/">#1485</a>: Fix leak of gc’s in gtkagg backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1484/">#1484</a>: V1.2.x Fix leak of gc’s in gtkagg backend.</li>