forked from matplotlib/matplotlib.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_stats.html
More file actions
1191 lines (1175 loc) · 153 KB
/
github_stats.html
File metadata and controls
1191 lines (1175 loc) · 153 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.3.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.3.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.3.1 documentation"
href="../_static/opensearch.xml"/>
<link rel="top" title="Matplotlib 1.3.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" />
</head>
<body>
<div id="unreleased-message"> You are reading an old version of the documentation (v1.3.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="../examples/index.html">examples</a>| </li>
<li><a href="../gallery.html">gallery</a>| </li>
<li><a href="../api/pyplot_summary.html">pyplot</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/11/08 - 2013/05/29 (tag: v1.2.0)</p>
<p>These lists are automatically generated, and may be incomplete or contain duplicates.</p>
<p>The following 85 authors contributed 1428 commits.</p>
<ul class="simple">
<li>Adam Ginsburg</li>
<li>Adrian Price-Whelan</li>
<li>Alejandro Dubrovsky</li>
<li>Amit Aronovitch</li>
<li>Andrew Dawson</li>
<li>Anton Akhmerov</li>
<li>Antony Lee</li>
<li>Ben Root</li>
<li>Binglin Chang</li>
<li>Bradley M. Froehle</li>
<li>Brian Mattern</li>
<li>Cameron Bates</li>
<li>Carl Michal</li>
<li>Chris Beaumont</li>
<li>Christoph Gohlke</li>
<li>Cimarron Mittelsteadt</li>
<li>Damon McDougall</li>
<li>Daniel Hyams</li>
<li>David Trémouilles</li>
<li>Eric Firing</li>
<li>Francesco Montesano</li>
<li>Geoffroy Billotey</li>
<li>Ian Thomas</li>
<li>Jae-Joon Lee</li>
<li>Jake Vanderplas</li>
<li>James R. Evans</li>
<li>Jan-Philip Gehrcke</li>
<li>Jeff Bingham</li>
<li>Jeffrey Bingham</li>
<li>Jens H. Nielsen</li>
<li>Jens Hedegaard Nielsen</li>
<li>Joe Kington</li>
<li>Julien Schueller</li>
<li>Julien Woillez</li>
<li>Kevin Davies</li>
<li>Leo Singer</li>
<li>Lodato Luciano</li>
<li>Martin Spacek</li>
<li>Martin Teichmann</li>
<li>Martin Ueding</li>
<li>Matt Giuca</li>
<li>Maximilian Albert</li>
<li>Michael Droettboom</li>
<li>Michael Welter</li>
<li>Michiel de Hoon</li>
<li>Min RK</li>
<li>MinRK</li>
<li>Nelle Varoquaux</li>
<li>Nic Eggert</li>
<li>Pascal Bugnion</li>
<li>Paul Hobson</li>
<li>Paul Ivanov</li>
<li>Pauli Virtanen</li>
<li>Peter Würtz</li>
<li>Phil Elson</li>
<li>Pierre Haessig</li>
<li>Piti Ongmongkolkul</li>
<li>Ryan Dale</li>
<li>Ryan May</li>
<li>Sandro Tosi</li>
<li>Sebastian Pinnau</li>
<li>Sergey Koposov</li>
<li>Takeshi Kanmae</li>
<li>Thomas A Caswell</li>
<li>Thomas Kluyver</li>
<li>Thomas Robitaille</li>
<li>Till Stensitzki</li>
<li>Tobias Megies</li>
<li>Todd Jennings</li>
<li>Tomas Kazmar</li>
<li>Tony S Yu</li>
<li>Víctor Terrón</li>
<li>Wes Campaigne</li>
<li>aseagram</li>
<li>burrbull</li>
<li>dhyams</li>
<li>drevicko</li>
<li>endolith</li>
<li>gitj</li>
<li>jschueller</li>
<li>krischer</li>
<li>montefra</li>
<li>pelson</li>
<li>pwuertz</li>
<li>torfbolt</li>
</ul>
<p>We closed a total of 924 issues, 326 pull requests and 598 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 (326):</p>
<ul class="simple">
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2082/">PR #2082</a>: Data limits (on 1.3.x)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2070/">PR #2070</a>: incorrect bbox of text</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2080/">PR #2080</a>: Fixed failing test on python3.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2079/">PR #2079</a>: added some comments</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2077/">PR #2077</a>: changed URL to the current CSV API for yahoo finance</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2076/">PR #2076</a>: Build the _windowing extension</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2066/">PR #2066</a>: [DOC] Mathtext and matshow examples</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2024/">PR #2024</a>: Update homepage image</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2074/">PR #2074</a>: backend gtk and gtk3: destroy figure save dialog after use; closes #2073</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2050/">PR #2050</a>: Added the from_levels_and_colors function.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/454/">PR #454</a>: Use a subdirectory of $XDG_CONFIG_HOME instead of ~/.matplotlibrc on Linux</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1813/">PR #1813</a>: GTK segfault with GTK3 and mpl_toolkits</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2069/">PR #2069</a>: BUG: pass kwargs to TimedAnimation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2063/">PR #2063</a>: Let _pcolorargs check C for consistency with X and Y; closes #1688</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2065/">PR #2065</a>: mlab.FIFOBuffer: remove fossil line referring to nonexistent method</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1975/">PR #1975</a>: MixedModeRenderer non-72-dpi fixes & Pgf mixed rendering</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2004/">PR #2004</a>: Make wx and wxagg work with wx 2.9.x on Mac.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2044/">PR #2044</a>: Svg rasterize (rebased)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2056/">PR #2056</a>: backend_gtk: don’t hide FileChooserDialog; closes #1530</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2053/">PR #2053</a>: sphinxext.ipython_directive broken</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2017/">PR #2017</a>: qt4_editor formlayout now works with colour tuples (fixes Issue #1690)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2057/">PR #2057</a>: pep8 fixes in animation.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2055/">PR #2055</a>: Deprecated the set_colorbar method on a scalar mappable.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1945/">PR #1945</a>: PEP8 testing</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2042/">PR #2042</a>: Ensure that PY_ARRAY_UNIQUE_SYMBOL is uniquely defined for each extension</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2041/">PR #2041</a>: Fix a number of issues in the doc build</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2049/">PR #2049</a>: Fix parallel testing by using the multi-process safe cbook.mkdirs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2047/">PR #2047</a>: Fixed typos in legend docs.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2048/">PR #2048</a>: Tweak image path</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1889/">PR #1889</a>: Fixed handling of <tt class="xref py py-obj docutils literal"><span class="pre">bar(..,</span> <span class="pre">bottom=None,</span> <span class="pre">log=True)</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2036/">PR #2036</a>: Fix missing ticks on inverted log axis</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2038/">PR #2038</a>: Added parameters to the xkcd function. Fixed deprecation warning on Path.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2028/">PR #2028</a>: Add a what’s new entry for the WebAgg backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2002/">PR #2002</a>: Added support for providing 1 or 2 extra colours to the contour routines to easily specify the under and over colors.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2011/">PR #2011</a>: Added the “cleared” method to Path, and updated the path module’s documentation.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2033/">PR #2033</a>: fix pstoeps function in backend_ps.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2026/">PR #2026</a>: Deprecations and housecleaning</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2032/">PR #2032</a>: ‘annotate’ ignores path_effects argument.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2030/">PR #2030</a>: Image pep8</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2029/">PR #2029</a>: Type correction: float -> double</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1753/">PR #1753</a>: Resolving Issue #1737 - MacOSX backend unicode problems in python 3.3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1925/">PR #1925</a>: Supported datetimes with microseconds, and those with long time series (>160 years).</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1951/">PR #1951</a>: parallelize_tests</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2020/">PR #2020</a>: Fixed call to path.Path.contains_point from pnpoly.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2019/">PR #2019</a>: Build: avoid win32-incompatible functions</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1919/">PR #1919</a>: Issue warning if too many figures are open</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1993/">PR #1993</a>: PS backend fails to savefig() pcolormesh with gouraud shading</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2005/">PR #2005</a>: Fail to export properly to svg and pdf with interactive paths</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2016/">PR #2016</a>: Crash when using character with umlaut</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2015/">PR #2015</a>: Wrong text baseline with usetex.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2012/">PR #2012</a>: texmanager doesn’t handle list of names for <tt class="xref py py-obj docutils literal"><span class="pre">font.family</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2010/">PR #2010</a>: Allow Paths to be marked as readonly</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2003/">PR #2003</a>: Fixed hatch clipping.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/2006/">PR #2006</a>: ValueError: stretch is invalid</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/956/">PR #956</a>: Shared axes colorbars & finer location control</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1329/">PR #1329</a>: Add a “sketch” path filter</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1999/">PR #1999</a>: Setting dashes to (0,0) results in infinite loop for agg backends</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1092/">PR #1092</a>: Better handling of scalars to plt.subplot(). Fixes #880</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1950/">PR #1950</a>: Tidy up the matplotlib.__init__ documentation.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1770/">PR #1770</a>: strange output from wx and wxagg when trying to render to JPEG or TIFF</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1998/">PR #1998</a>: Wx backend broken</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1917/">PR #1917</a>: Make <tt class="xref py py-obj docutils literal"><span class="pre">axis.set_scale</span></tt> private</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1927/">PR #1927</a>: Workaround for Python 3 with pyparsing <= 2.0.0</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1885/">PR #1885</a>: text is not properly clipped in 1.2.1</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1955/">PR #1955</a>: Honouring the alpha attribute when creating composite images.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1136/">PR #1136</a>: Configuring automatic use of tight_layout</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1953/">PR #1953</a>: New doc build failure</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1896/">PR #1896</a>: Doc build is full of lots of irrelevant warnings</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1902/">PR #1902</a>: Default quit keymap - support for cmd+w on OSX</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1954/">PR #1954</a>: Supporting different alphas for face and edge colours</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1964/">PR #1964</a>: Fixes issue #1960. Account for right/top spine data offset on transform ...</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1988/">PR #1988</a>: Added bar plot pickle support.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1989/">PR #1989</a>: Log scale pickle</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1990/">PR #1990</a>: Fixed tight_layout pickle support.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1991/">PR #1991</a>: bugfix for matplotlib/ticker.py (python 3.3)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1833/">PR #1833</a>: Change hist behavior when normed and stacked to something more sensible</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1985/">PR #1985</a>: horizontal histogramm doesn’t work in 1.2 branch</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1984/">PR #1984</a>: colors.rgb_to_hsv does not work properly with array of int dtype</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1982/">PR #1982</a>: Fix bug in SpanSelector, introduced in commit #dd325759</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1978/">PR #1978</a>: Setting font type using rcParams does not work under Python 3.*</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1976/">PR #1976</a>: Replace usage of Lena image in the gallery.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1977/">PR #1977</a>: Fix <tt class="xref py py-obj docutils literal"><span class="pre">backend_driver.py</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1972/">PR #1972</a>: SubplotBase._make_twin_axes always creates a new subplot instance</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1787/">PR #1787</a>: Path.contains_points() incorrect return</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1973/">PR #1973</a>: Collection’s contains method doesn’t honour offset_position attribute</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1956/">PR #1956</a>: imsave should preserve alpha channel</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1967/">PR #1967</a>: svg double hyphen in plot title –</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1929/">PR #1929</a>: Fixed failing bbox_inches=’tight’ case when a contour collection is empty</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1968/">PR #1968</a>: Rotated text element misalignment in Agg</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1868/">PR #1868</a>: Fixed background colour of PNGs saved with a non-zero opacity.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1965/">PR #1965</a>: Make the travis output quieter on v1.2.x</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1946/">PR #1946</a>: re-arrange mplDeprecation imports</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1949/">PR #1949</a>: Build failes under ubuntu 13.04</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1918/">PR #1918</a>: Tidied up some of the documentation.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1924/">PR #1924</a>: MEP 12: Gallery cleanup and reorganization (rebase)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1884/">PR #1884</a>: incorrect linkage if system PyCXX is found</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1936/">PR #1936</a>: add pkgconfig to homebrew install instruction</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1941/">PR #1941</a>: Use freetype-config if pkg-config is not installed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1940/">PR #1940</a>: Cleanup and what’s new item added for jpeg quality rcParam feature.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1771/">PR #1771</a>: Jpeg quality 95 by default with rendering with PIL</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1935/">PR #1935</a>: 1836 latex docs fail</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1932/">PR #1932</a>: DOC - two modules link appeared in the documentation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1810/">PR #1810</a>: Cairo + plot_date = misaligned x-axis labels</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1905/">PR #1905</a>: Prevent Qt4 from stopping the interpreter</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1861/">PR #1861</a>: Added a find_all method to the RcParams dictionary.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1921/">PR #1921</a>: Fix filename decoding when calling fc-match</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1757/">PR #1757</a>: DOC improves documentation on the pyplot module and the bar method</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1858/">PR #1858</a>: backend_pgf: clip paths within the backend (fixes #1857)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1913/">PR #1913</a>: Fix for issue #1812</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1916/">PR #1916</a>: Normalize all ‘e.g.’ instances. Addresses issue #1423.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1908/">PR #1908</a>: added rcParam for x and y margin</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1903/">PR #1903</a>: Switching b and c in _transformation_converter to fix issue #1886</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1897/">PR #1897</a>: Doc build failure - unicode error in generate_example_rst</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1915/">PR #1915</a>: Corrected a wrong numpy record name in documentation.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1914/">PR #1914</a>: Fix texmanager.dvipng_hack_alpha() to correctly use Popen.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1906/">PR #1906</a>: Spectral plot unit tests</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1824/">PR #1824</a>: Support environments without a home dir or writable file system</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1878/">PR #1878</a>: Webagg changes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1894/">PR #1894</a>: Exporting figure as pdf using savefig() messes up axis background in OS X</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1887/">PR #1887</a>: Clarify documentation for FuncAnimation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1890/">PR #1890</a>: Restored inkscape installing on travis-ci.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1874/">PR #1874</a>: Building Matplotlib on Ubuntu</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1186/">PR #1186</a>: Make default arrow head width sensible</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1875/">PR #1875</a>: [EHN] Add frameon and savefig.frameon to rcParams</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1865/">PR #1865</a>: Fix manual contour label positions on sparse contours</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1210/">PR #1210</a>: Add dateutil kwargs to csv2rec</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1383/">PR #1383</a>: More fixes for doc building with python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1864/">PR #1864</a>: fix legend w/ ‘expand’ mode which fails for a single item.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1448/">PR #1448</a>: <tt class="docutils literal"><span class="pre">`bbox_inches="tight"`</span></tt> support for <em>all</em> figure artists.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1869/">PR #1869</a>: Installed inkscape on the travis-ci vm.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1870/">PR #1870</a>: Testing documentation isn’t clear about which files to copy</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1866/">PR #1866</a>: fix the pyplot version of rc_context</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1860/">PR #1860</a>: Bug with PatchCollection in PDF output</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1862/">PR #1862</a>: Matplotlib savefig() closes BytesIO object when saving in postscript format</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1841/">PR #1841</a>: Fixes issue #1259 - Added modifier key handling for macosx backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/pull/1816/">PR #1816</a>: Avoid macosx backend slowdown; issue 1563</li>
<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>
</ul>
<p>Issues (598):</p>
<ul class="simple">
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2075/">#2075</a>: Test failure in matplotlib.tests.test_colors.test_cmap_and_norm_from_levels_and_colors2</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2061/">#2061</a>: hist(..., histtype=’step’) does not set ylim properly.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2081/">#2081</a>: AutoDateLocator interval bug</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2082/">#2082</a>: Data limits (on 1.3.x)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/854/">#854</a>: Bug in Axes.relim when the first line is y_isdata=False and possible fix</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2070/">#2070</a>: incorrect bbox of text</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1063/">#1063</a>: PyQt: fill_between => Singular matrix</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2072/">#2072</a>: PEP8 conformance tests complain about missing files</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2080/">#2080</a>: Fixed failing test on python3.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2079/">#2079</a>: added some comments</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1876/">#1876</a>: [WIP] Steppath and Line2D</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/296/">#296</a>: 2D imagemap for 3D scatter plot</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/667/">#667</a>: hexbin lacks a weights argument</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2077/">#2077</a>: changed URL to the current CSV API for yahoo finance</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/602/">#602</a>: axisartist incompatible with autofmt_xdate</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/609/">#609</a>: Large values in histograms not showing</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/654/">#654</a>: autofmt_xdate cropping graph wrongly</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/615/">#615</a>: Cannot set label text size or family using axisartist</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/343/">#343</a>: Response Spectra Tripartite Plot</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/325/">#325</a>: EMF backend does not support bitmaps</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/281/">#281</a>: scatter and plot should have the same kwards</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/318/">#318</a>: ability to unshare axis</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/227/">#227</a>: Set cap and join styles for patches</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/222/">#222</a>: Support for amsmath in TexManager</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/214/">#214</a>: add quote charater support to csv related functions.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/161/">#161</a>: one pixel error with gtkagg and blitting</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/157/">#157</a>: Sphinx plot extension source/build directory issues</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2076/">#2076</a>: Build the _windowing extension</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2066/">#2066</a>: [DOC] Mathtext and matshow examples</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2024/">#2024</a>: Update homepage image</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2074/">#2074</a>: backend gtk and gtk3: destroy figure save dialog after use; closes #2073</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2073/">#2073</a>: Gtk file save dialog doesn’t go ahead when clicking “Save” or “Cancel”</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2037/">#2037</a>: PGF backend doesn’t fire draw_event when not being used as the “primary” backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2050/">#2050</a>: Added the from_levels_and_colors function.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/454/">#454</a>: Use a subdirectory of $XDG_CONFIG_HOME instead of ~/.matplotlibrc on Linux</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2043/">#2043</a>: Use subplots in examples (rebase)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1813/">#1813</a>: GTK segfault with GTK3 and mpl_toolkits</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2069/">#2069</a>: BUG: pass kwargs to TimedAnimation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2063/">#2063</a>: Let _pcolorargs check C for consistency with X and Y; closes #1688</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1688/">#1688</a>: _pcolorargs should check consistency of argument shapes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2065/">#2065</a>: mlab.FIFOBuffer: remove fossil line referring to nonexistent method</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2067/">#2067</a>: Font issue while trying to save PS/EPS/SVG but not PDF</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1975/">#1975</a>: MixedModeRenderer non-72-dpi fixes & Pgf mixed rendering</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1821/">#1821</a>: WxAgg hangs in interactive mode</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/162/">#162</a>: twinx and plot_date</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1609/">#1609</a>: test_pcolormesh hangs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1598/">#1598</a>: Use sublots in examples</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1185/">#1185</a>: Svg rasterize resolution fix</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2004/">#2004</a>: Make wx and wxagg work with wx 2.9.x on Mac.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1530/">#1530</a>: saving a figure triggers (very) excessive IO activity</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2044/">#2044</a>: Svg rasterize (rebased)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2056/">#2056</a>: backend_gtk: don’t hide FileChooserDialog; closes #1530</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1926/">#1926</a>: Unable to pickle histogram figure</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1690/">#1690</a>: Edit figure parameters: TypeError: argument 1 has unexpected type ‘list’</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2053/">#2053</a>: sphinxext.ipython_directive broken</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1997/">#1997</a>: eps files stump evince</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2017/">#2017</a>: qt4_editor formlayout now works with colour tuples (fixes Issue #1690)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2057/">#2057</a>: pep8 fixes in animation.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2055/">#2055</a>: Deprecated the set_colorbar method on a scalar mappable.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2058/">#2058</a>: mplot3d: backend_pdf.py problem with last release not present in 1.2.1rc1</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1391/">#1391</a>: AutoDateLocator should handle sub-second intervals</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/308/">#308</a>: Emf backend should support math text</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1945/">#1945</a>: PEP8 testing</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/740/">#740</a>: plt.pcolormesh and shape mismatch</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1734/">#1734</a>: Y-axis labels are impossible to align by baseline</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2039/">#2039</a>: PY_ARRAY_UNIQUE_SYMBOL not unique enough</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2042/">#2042</a>: Ensure that PY_ARRAY_UNIQUE_SYMBOL is uniquely defined for each extension</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2041/">#2041</a>: Fix a number of issues in the doc build</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1223/">#1223</a>: dpi= for bitmaps not handled correctly</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2049/">#2049</a>: Fix parallel testing by using the multi-process safe cbook.mkdirs</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1324/">#1324</a>: backend_pgf: open file handles on Windows</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2047/">#2047</a>: Fixed typos in legend docs.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2048/">#2048</a>: Tweak image path</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1904/">#1904</a>: Legend kwarg scatteroffsets vs. scatteryoffsets</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1807/">#1807</a>: Regression: odd rendering of zordered areas on twinx axes in 1.2 (release) versus 1.1</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1882/">#1882</a>: Possible regression in 1.2.1 vs 1.2.0 re bar plot with log=True</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2031/">#2031</a>: Update screenshots page</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1889/">#1889</a>: Fixed handling of <tt class="xref py py-obj docutils literal"><span class="pre">bar(..,</span> <span class="pre">bottom=None,</span> <span class="pre">log=True)</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2036/">#2036</a>: Fix missing ticks on inverted log axis</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2040/">#2040</a>: Cannot align subplot yaxis labels with PGF backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2038/">#2038</a>: Added parameters to the xkcd function. Fixed deprecation warning on Path.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2028/">#2028</a>: Add a what’s new entry for the WebAgg backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2009/">#2009</a>: Deprecate C++ functions in _path.cpp that are imported in path.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1961/">#1961</a>: All included backends should work or be removed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1966/">#1966</a>: Remove deprecated code we threatened to remove for 1.3.x</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2002/">#2002</a>: Added support for providing 1 or 2 extra colours to the contour routines to easily specify the under and over colors.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2011/">#2011</a>: Added the “cleared” method to Path, and updated the path module’s documentation.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2033/">#2033</a>: fix pstoeps function in backend_ps.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2026/">#2026</a>: Deprecations and housecleaning</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2032/">#2032</a>: ‘annotate’ ignores path_effects argument.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2030/">#2030</a>: Image pep8</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1720/">#1720</a>: Can’t pickle RendererAgg in tight_layout figures</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2029/">#2029</a>: Type correction: float -> double</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1737/">#1737</a>: MacOSX backend unicode problems in python 3.3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1753/">#1753</a>: Resolving Issue #1737 - MacOSX backend unicode problems in python 3.3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1925/">#1925</a>: Supported datetimes with microseconds, and those with long time series (>160 years).</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2023/">#2023</a>: imshow’s “nearest” and “none” interpolations produce smoothed images</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1951/">#1951</a>: parallelize_tests</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2020/">#2020</a>: Fixed call to path.Path.contains_point from pnpoly.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2019/">#2019</a>: Build: avoid win32-incompatible functions</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2018/">#2018</a>: can’t create single legend line with different point types</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1919/">#1919</a>: Issue warning if too many figures are open</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1993/">#1993</a>: PS backend fails to savefig() pcolormesh with gouraud shading</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2005/">#2005</a>: Fail to export properly to svg and pdf with interactive paths</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2016/">#2016</a>: Crash when using character with umlaut</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2015/">#2015</a>: Wrong text baseline with usetex.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2012/">#2012</a>: texmanager doesn’t handle list of names for <tt class="xref py py-obj docutils literal"><span class="pre">font.family</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2010/">#2010</a>: Allow Paths to be marked as readonly</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2003/">#2003</a>: Fixed hatch clipping.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2006/">#2006</a>: ValueError: stretch is invalid</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2014/">#2014</a>: Possible error in animate.py after commit cc617006f7f0a18396cecf4a9f1e222f1ee5204e</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2013/">#2013</a>: Histogram output in PDF is mashed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1934/">#1934</a>: Specifying dictionary argument with dict() or braces matters in set_bbox</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2000/">#2000</a>: Plots show up completely white</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1994/">#1994</a>: Make wx and wxagg work with wx 2.9.x on Mac.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/956/">#956</a>: Shared axes colorbars & finer location control</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1329/">#1329</a>: Add a “sketch” path filter</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1999/">#1999</a>: Setting dashes to (0,0) results in infinite loop for agg backends</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/2001/">#2001</a>: Fixed hatch clipping.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1199/">#1199</a>: New boxplot features</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1898/">#1898</a>: Hatch clipping</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1092/">#1092</a>: Better handling of scalars to plt.subplot(). Fixes #880</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1950/">#1950</a>: Tidy up the matplotlib.__init__ documentation.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1855/">#1855</a>: BUG: fixed weird case where boxplot whiskers went inside box</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1831/">#1831</a>: Unimplemented comparison method for Line3DCollection</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1909/">#1909</a>: patheffects for Line2d object : rebase of #1015</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1770/">#1770</a>: strange output from wx and wxagg when trying to render to JPEG or TIFF</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1998/">#1998</a>: Wx backend broken</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1871/">#1871</a>: set_scale and set_xscale</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1917/">#1917</a>: Make <tt class="xref py py-obj docutils literal"><span class="pre">axis.set_scale</span></tt> private</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1927/">#1927</a>: Workaround for Python 3 with pyparsing <= 2.0.0</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1885/">#1885</a>: text is not properly clipped in 1.2.1</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1955/">#1955</a>: Honouring the alpha attribute when creating composite images.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1290/">#1290</a>: Debundle pyparsing</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1040/">#1040</a>: Make ‘rstride’, ‘cstride’ default values smarter.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1016/">#1016</a>: Object oriented way of setting rc parameters, enabling elegant Pythonic syntax.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1136/">#1136</a>: Configuring automatic use of tight_layout</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1856/">#1856</a>: Raise exception when user tries to use set_xlim or set_ylim on a geographic projection</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1953/">#1953</a>: New doc build failure</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1896/">#1896</a>: Doc build is full of lots of irrelevant warnings</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1974/">#1974</a>: wx backend changes for wxPython Phoenix</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1900/">#1900</a>: Fix building when Gtk doesn’t support version check</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1902/">#1902</a>: Default quit keymap - support for cmd+w on OSX</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1899/">#1899</a>: Different alphas for lines and fills.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1954/">#1954</a>: Supporting different alphas for face and edge colours</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1938/">#1938</a>: Updated patch to not override alpha on edgecolor if set to none</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1964/">#1964</a>: Fixes issue #1960. Account for right/top spine data offset on transform ...</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1539/">#1539</a>: Pickling of log axes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1828/">#1828</a>: AttributeError with big float Value(s)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1971/">#1971</a>: Fix initialization problem with useblit on SpanSelector instance creatio...</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1988/">#1988</a>: Added bar plot pickle support.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1989/">#1989</a>: Log scale pickle</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1990/">#1990</a>: Fixed tight_layout pickle support.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1991/">#1991</a>: bugfix for matplotlib/ticker.py (python 3.3)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1833/">#1833</a>: Change hist behavior when normed and stacked to something more sensible</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1979/">#1979</a>: developper’s guide: what is the best workflow to test modifications</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1985/">#1985</a>: horizontal histogramm doesn’t work in 1.2 branch</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1984/">#1984</a>: colors.rgb_to_hsv does not work properly with array of int dtype</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1982/">#1982</a>: Fix bug in SpanSelector, introduced in commit #dd325759</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1978/">#1978</a>: Setting font type using rcParams does not work under Python 3.*</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1970/">#1970</a>: Build: allow local static png dependency</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1976/">#1976</a>: Replace usage of Lena image in the gallery.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1977/">#1977</a>: Fix <tt class="xref py py-obj docutils literal"><span class="pre">backend_driver.py</span></tt></li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1944/">#1944</a>: ValueError exception in drag_zoom (tk backend)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1957/">#1957</a>: matplotlib 1.2 / pylab_examples example code: multiple_yaxis_with_spines.py</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1972/">#1972</a>: SubplotBase._make_twin_axes always creates a new subplot instance</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1787/">#1787</a>: Path.contains_points() incorrect return</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1973/">#1973</a>: Collection’s contains method doesn’t honour offset_position attribute</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1956/">#1956</a>: imsave should preserve alpha channel</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1967/">#1967</a>: svg double hyphen in plot title –</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1969/">#1969</a>: SubplotBase._make_twin_axes always creates a new subplot instance.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1837/">#1837</a>: html documentation: modules table and prev-next links</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1892/">#1892</a>: possible 1.2.1 regression in ax.axhline</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1929/">#1929</a>: Fixed failing bbox_inches=’tight’ case when a contour collection is empty</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1968/">#1968</a>: Rotated text element misalignment in Agg</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1868/">#1868</a>: Fixed background colour of PNGs saved with a non-zero opacity.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1965/">#1965</a>: Make the travis output quieter on v1.2.x</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1946/">#1946</a>: re-arrange mplDeprecation imports</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1948/">#1948</a>: Unable to import pylab (matplotlib._png)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1949/">#1949</a>: Build failes under ubuntu 13.04</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1918/">#1918</a>: Tidied up some of the documentation.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1924/">#1924</a>: MEP 12: Gallery cleanup and reorganization (rebase)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1884/">#1884</a>: incorrect linkage if system PyCXX is found</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1936/">#1936</a>: add pkgconfig to homebrew install instruction</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1941/">#1941</a>: Use freetype-config if pkg-config is not installed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1940/">#1940</a>: Cleanup and what’s new item added for jpeg quality rcParam feature.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1937/">#1937</a>: All text only partially displayed</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1771/">#1771</a>: Jpeg quality 95 by default with rendering with PIL</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1836/">#1836</a>: LaTeX docs build blows up</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1935/">#1935</a>: 1836 latex docs fail</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1932/">#1932</a>: DOC - two modules link appeared in the documentation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1930/">#1930</a>: FIX Latex documentation now builds properly</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1928/">#1928</a>: Fixed polygon3d rendering bug issue #178</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1810/">#1810</a>: Cairo + plot_date = misaligned x-axis labels</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1623/">#1623</a>: MEP 12: Gallery cleanup and reorganization</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1905/">#1905</a>: Prevent Qt4 from stopping the interpreter</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1923/">#1923</a>: fix Travis failures on 2.6 and 2.7</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1922/">#1922</a>: Commit 2415c6200ebdba75a0571d71a4569f18153fff57 introduces syntax error</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1861/">#1861</a>: Added a find_all method to the RcParams dictionary.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1879/">#1879</a>: Decode subprocess output to utf-8 or regex will fail</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1921/">#1921</a>: Fix filename decoding when calling fc-match</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1859/">#1859</a>: Fixed a bug in offsetbox</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1757/">#1757</a>: DOC improves documentation on the pyplot module and the bar method</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1767/">#1767</a>: bytes regex matching issue in font_manager.py around 1283 (line number)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1857/">#1857</a>: pgf backend doesn’t work well with very large numbers</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1858/">#1858</a>: backend_pgf: clip paths within the backend (fixes #1857)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1812/">#1812</a>: Error when setting arrowstyle</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1913/">#1913</a>: Fix for issue #1812</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1423/">#1423</a>: Normalize e.g. instances, or reduce them?</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1916/">#1916</a>: Normalize all ‘e.g.’ instances. Addresses issue #1423.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1766/">#1766</a>: add rcParam to set the margin</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1908/">#1908</a>: added rcParam for x and y margin</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/691/">#691</a>: Inner colorbar & Outer colorbar</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1886/">#1886</a>: MacOSX backend incorrectly displays plot/scatter under Affine2D transform</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1903/">#1903</a>: Switching b and c in _transformation_converter to fix issue #1886</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1897/">#1897</a>: Doc build failure - unicode error in generate_example_rst</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1915/">#1915</a>: Corrected a wrong numpy record name in documentation.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1911/">#1911</a>: dvipng_hack_alpha version check is broken</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1914/">#1914</a>: Fix texmanager.dvipng_hack_alpha() to correctly use Popen.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1823/">#1823</a>: Cannot import matplotlib on Google App Engine dev appserver</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1906/">#1906</a>: Spectral plot unit tests</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1824/">#1824</a>: Support environments without a home dir or writable file system</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1015/">#1015</a>: patheffects for Line2d object</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1878/">#1878</a>: Webagg changes</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1818/">#1818</a>: Updated some of the documentation information.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1894/">#1894</a>: Exporting figure as pdf using savefig() messes up axis background in OS X</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1887/">#1887</a>: Clarify documentation for FuncAnimation</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1893/">#1893</a>: bar plot sets axhline(0) for log plots, mpl 1.2.1 disapproves</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1890/">#1890</a>: Restored inkscape installing on travis-ci.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1310/">#1310</a>: Drops last tick label for some ranges</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1874/">#1874</a>: Building Matplotlib on Ubuntu</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1186/">#1186</a>: Make default arrow head width sensible</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1875/">#1875</a>: [EHN] Add frameon and savefig.frameon to rcParams</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1865/">#1865</a>: Fix manual contour label positions on sparse contours</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/208/">#208</a>: csv2rec imports dates incorrectly and has no option</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1356/">#1356</a>: Docs don’t build with Python3 (make.py except)</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1210/">#1210</a>: Add dateutil kwargs to csv2rec</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1383/">#1383</a>: More fixes for doc building with python 3</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1864/">#1864</a>: fix legend w/ ‘expand’ mode which fails for a single item.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1763/">#1763</a>: Matplotlib 1.2.0 no longer respects the “bottom” argument for horizontal histograms</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1448/">#1448</a>: <tt class="docutils literal"><span class="pre">`bbox_inches="tight"`</span></tt> support for <em>all</em> figure artists.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1869/">#1869</a>: Installed inkscape on the travis-ci vm.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1008/">#1008</a>: Saving animation with coloured background</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1870/">#1870</a>: Testing documentation isn’t clear about which files to copy</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1528/">#1528</a>: Fonts rendered are 25% larger than requested on SVG backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1256/">#1256</a>: rendering slowdown with big invisible lines</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1287/">#1287</a>: compare_images computes RMS incorrectly</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1866/">#1866</a>: fix the pyplot version of rc_context</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1631/">#1631</a>: histstack looks bad with alpha.</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1867/">#1867</a>: QT backend changes locale</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1860/">#1860</a>: Bug with PatchCollection in PDF output</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1862/">#1862</a>: Matplotlib savefig() closes BytesIO object when saving in postscript format</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1259/">#1259</a>: MacOS backend modifier keys</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1841/">#1841</a>: Fixes issue #1259 - Added modifier key handling for macosx backend</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1563/">#1563</a>: macosx backend slowdown with 1.2.0</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1816/">#1816</a>: Avoid macosx backend slowdown; issue 1563</li>
<li><a class="reference external" href="http://github.com/matplotlib/matplotlib/issues/1729/">#1729</a>: request for plotting variable bin size with imshow</li>
<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="#id4"><span class="problematic" id="id5">*</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>