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

Skip to content

Commit 700f18c

Browse files
committed
rebuilt docs
1 parent 88503eb commit 700f18c

File tree

2,844 files changed

+75014
-17414
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,844 files changed

+75014
-17414
lines changed

1.5.1/_images/arrow_demo.png

-1 Bytes

1.5.1/_images/arrow_demo1.png

-1 Bytes

1.5.1/_images/boxplot_demo2.png

22 Bytes

1.5.1/_images/boxplot_explanation.png

15.4 KB

1.5.1/_images/collections_demo.png

3.23 KB

1.5.1/_images/demo_axis_direction.png

0 Bytes

1.5.1/_images/demo_axisline_style.png

-7 Bytes
0 Bytes
0 Bytes

1.5.1/_images/demo_floating_axis.png

-3 Bytes

1.5.1/_images/demo_floating_axis1.png

-3 Bytes
-566 Bytes
820 Bytes
-1.65 KB
-4.3 KB
-1.48 KB
-2.91 KB
-655 Bytes
2.67 KB

1.5.1/_images/filled_step_01.png

7 Bytes

1.5.1/_images/filled_step_011.png

7 Bytes

1.5.1/_images/finance_work2.png

-439 Bytes

1.5.1/_images/finance_work21.png

-439 Bytes

1.5.1/_images/named_colors.png

109 Bytes

1.5.1/_images/offset_demo.png

0 Bytes

1.5.1/_images/offset_demo1.png

0 Bytes

1.5.1/_images/parasite_simple2.png

-1 Bytes

1.5.1/_images/parasite_simple21.png

1 Byte

1.5.1/_images/plotmap.png

423 KB

1.5.1/_images/simple_axisartist1.png

78 Bytes

1.5.1/_images/spectrum_demo.png

279 Bytes

1.5.1/_images/spectrum_demo1.png

279 Bytes

1.5.1/_images/system_monitor.png

-125 Bytes

1.5.1/_images/tricontour3d_demo.png

0 Bytes

1.5.1/_images/tricontour3d_demo1.png

0 Bytes
0 Bytes
0 Bytes
-461 Bytes

1.5.1/_images/xcorr_demo.png

-1.22 KB

1.5.1/_images/xcorr_demo1.png

-1.22 KB

1.5.1/_sources/faq/virtualenv_faq.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ implemented in a script as below. To use this modify ``PYVER`` and
100100
PYTHON=${PATHTOPYTHON}python${PYVER}
101101

102102
# find the root of the virtualenv, it should be the parent of the dir this script is in
103-
ENV=`$PYTHON -c "import os; print os.path.abspath(os.path.join(os.path.dirname(\"$0\"), '..'))"`
103+
ENV=`$PYTHON -c "import os; print(os.path.abspath(os.path.join(os.path.dirname(\"$0\"), '..')))"`
104104

105105
# now run Python with the virtualenv set as Python's HOME
106106
export PYTHONHOME=$ENV

1.5.1/_sources/users/installing.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,11 @@ matplotlib with a user interface toolkit. See
226226
:ref:`what-is-a-backend` for more details on the optional matplotlib
227227
backends and the capabilities they provide.
228228

229-
:term:`tk` 8.3 or later
230-
The TCL/Tk widgets library used by the TkAgg backend
229+
:term:`tk` 8.3 or later, not 8.6.0 or 8.6.1
230+
The TCL/Tk widgets library used by the TkAgg backend.
231+
232+
Versions 8.6.0 and 8.6.1 are known to have issues that may result
233+
in segfaults when closing multiple windows in the wrong order.
231234

232235
:term:`pyqt` 4.0 or later
233236
The Qt4 widgets library python wrappers for the Qt4Agg backend

1.5.1/_static/basic.css

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ div.sphinxsidebar {
5252
width: 230px;
5353
margin-left: -100%;
5454
font-size: 90%;
55-
word-wrap: break-word;
56-
overflow-wrap : break-word;
5755
}
5856

5957
div.sphinxsidebar ul {
@@ -189,13 +187,6 @@ div.genindex-jumpbox {
189187

190188
/* -- general body styles --------------------------------------------------- */
191189

192-
div.body p, div.body dd, div.body li, div.body blockquote {
193-
-moz-hyphens: auto;
194-
-ms-hyphens: auto;
195-
-webkit-hyphens: auto;
196-
hyphens: auto;
197-
}
198-
199190
a.headerlink {
200191
visibility: hidden;
201192
}

1.5.1/_static/boxplot_explanation.png

15.4 KB

1.5.1/_static/doctools.js

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ var Documentation = {
124124
this.fixFirefoxAnchorBug();
125125
this.highlightSearchWords();
126126
this.initIndexTable();
127-
128127
},
129128

130129
/**
@@ -253,29 +252,6 @@ var Documentation = {
253252
});
254253
var url = parts.join('/');
255254
return path.substring(url.lastIndexOf('/') + 1, path.length - 1);
256-
},
257-
258-
initOnKeyListeners: function() {
259-
$(document).keyup(function(event) {
260-
var activeElementType = document.activeElement.tagName;
261-
// don't navigate when in search box or textarea
262-
if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT') {
263-
switch (event.keyCode) {
264-
case 37: // left
265-
var prevHref = $('link[rel="prev"]').prop('href');
266-
if (prevHref) {
267-
window.location.href = prevHref;
268-
return false;
269-
}
270-
case 39: // right
271-
var nextHref = $('link[rel="next"]').prop('href');
272-
if (nextHref) {
273-
window.location.href = nextHref;
274-
return false;
275-
}
276-
}
277-
}
278-
});
279255
}
280256
};
281257

@@ -284,4 +260,4 @@ _ = Documentation.gettext;
284260

285261
$(document).ready(function() {
286262
Documentation.init();
287-
});
263+
});

1.5.1/_static/numfocus_badge.png

13.3 KB

1.5.1/_static/searchtools.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* searchtools.js_t
33
* ~~~~~~~~~~~~~~~~
44
*
5-
* Sphinx JavaScript utilities for the full-text search.
5+
* Sphinx JavaScript utilties for the full-text search.
66
*
77
* :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
@@ -623,7 +623,7 @@ var Search = {
623623
* helper function to return a node containing the
624624
* search summary for a given text. keywords is a list
625625
* of stemmed words, hlwords is the list of normal, unstemmed
626-
* words. the first one is used to find the occurrence, the
626+
* words. the first one is used to find the occurance, the
627627
* latter for highlighting it.
628628
*/
629629
makeSearchSummary : function(text, keywords, hlwords) {

1.5.1/_static/websupport.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* websupport.js
33
* ~~~~~~~~~~~~~
44
*
5-
* sphinx.websupport utilities for all documentation.
5+
* sphinx.websupport utilties for all documentation.
66
*
77
* :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.

1.5.1/api/afm_api.html

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ <h3>Quick search</h3>
132132
<input type="hidden" name="check_keywords" value="yes" />
133133
<input type="hidden" name="area" value="default" />
134134
</form>
135+
<p class="searchtip" style="font-size: 90%">
136+
Enter search terms or a module, class or function name.
137+
</p>
135138
</div>
136139
<script type="text/javascript">$('#searchbox').show(0);</script>
137140
</div>
@@ -159,12 +162,12 @@ <h1>afm (Adobe Font Metrics interface)<a class="headerlink" href="#afm-adobe-fon
159162
</ol>
160163
</div></blockquote>
161164
<p>It is pretty easy to use, and requires only built-in python libs:</p>
162-
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">matplotlib</span> <span class="k">import</span> <span class="n">rcParams</span>
165+
<div class="highlight-python"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">matplotlib</span> <span class="kn">import</span> <span class="n">rcParams</span>
163166
<span class="gp">&gt;&gt;&gt; </span><span class="kn">import</span> <span class="nn">os.path</span>
164167
<span class="gp">&gt;&gt;&gt; </span><span class="n">afm_fname</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">rcParams</span><span class="p">[</span><span class="s1">&#39;datapath&#39;</span><span class="p">],</span>
165168
<span class="gp">... </span> <span class="s1">&#39;fonts&#39;</span><span class="p">,</span> <span class="s1">&#39;afm&#39;</span><span class="p">,</span> <span class="s1">&#39;ptmr8a.afm&#39;</span><span class="p">)</span>
166169
<span class="go">&gt;&gt;&gt;</span>
167-
<span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">matplotlib.afm</span> <span class="k">import</span> <span class="n">AFM</span>
170+
<span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">matplotlib.afm</span> <span class="kn">import</span> <span class="n">AFM</span>
168171
<span class="gp">&gt;&gt;&gt; </span><span class="n">afm</span> <span class="o">=</span> <span class="n">AFM</span><span class="p">(</span><span class="nb">open</span><span class="p">(</span><span class="n">afm_fname</span><span class="p">))</span>
169172
<span class="gp">&gt;&gt;&gt; </span><span class="n">afm</span><span class="o">.</span><span class="n">string_width_height</span><span class="p">(</span><span class="s1">&#39;What the heck?&#39;</span><span class="p">)</span>
170173
<span class="go">(6220.0, 694)</span>
@@ -334,9 +337,9 @@ <h1>afm (Adobe Font Metrics interface)<a class="headerlink" href="#afm-adobe-fon
334337
</div>
335338
<div class="footer">
336339
&copy; Copyright 2002 - 2012 John Hunter, Darren Dale, Eric Firing, Michael Droettboom and the matplotlib development team; 2012 - 2014 The matplotlib development team.
337-
Last updated on May 01, 2016.
340+
Last updated on Jun 18, 2016.
338341
Created using <a
339-
href="http://sphinx-doc.org/">Sphinx</a> 1.4.1.
342+
href="http://sphinx-doc.org/">Sphinx</a> 1.3.5.
340343
</div>
341344

342345
<script>

1.5.1/api/animation_api.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ <h3>Quick search</h3>
132132
<input type="hidden" name="check_keywords" value="yes" />
133133
<input type="hidden" name="area" value="default" />
134134
</form>
135+
<p class="searchtip" style="font-size: 90%">
136+
Enter search terms or a module, class or function name.
137+
</p>
135138
</div>
136139
<script type="text/javascript">$('#searchbox').show(0);</script>
137140
</div>
@@ -566,7 +569,7 @@ <h1>animation<a class="headerlink" href="#animation" title="Permalink to this he
566569
is called to start the process and finish() is called afterwards.
567570
This class is set up to provide for writing movie frame data to a pipe.
568571
saving() is provided as a context manager to facilitate this process as:</p>
569-
<div class="highlight-default"><div class="highlight"><pre><span></span><span class="k">with</span> <span class="n">moviewriter</span><span class="o">.</span><span class="n">saving</span><span class="p">(</span><span class="s1">&#39;myfile.mp4&#39;</span><span class="p">):</span>
572+
<div class="highlight-python"><div class="highlight"><pre><span class="k">with</span> <span class="n">moviewriter</span><span class="o">.</span><span class="n">saving</span><span class="p">(</span><span class="s1">&#39;myfile.mp4&#39;</span><span class="p">):</span>
570573
<span class="c1"># Iterate over frames</span>
571574
<span class="n">moviewriter</span><span class="o">.</span><span class="n">grab_frame</span><span class="p">()</span>
572575
</pre></div>
@@ -710,9 +713,9 @@ <h1>animation<a class="headerlink" href="#animation" title="Permalink to this he
710713
</div>
711714
<div class="footer">
712715
&copy; Copyright 2002 - 2012 John Hunter, Darren Dale, Eric Firing, Michael Droettboom and the matplotlib development team; 2012 - 2014 The matplotlib development team.
713-
Last updated on May 01, 2016.
716+
Last updated on Jun 18, 2016.
714717
Created using <a
715-
href="http://sphinx-doc.org/">Sphinx</a> 1.4.1.
718+
href="http://sphinx-doc.org/">Sphinx</a> 1.3.5.
716719
</div>
717720

718721
<script>

0 commit comments

Comments
 (0)