instead of having people enter all this info by hand, you should just
write a python script that extracts most of the technical details from
the current install, prints it out for cut-and paste into the form or
directly sends it to your server. ;-)
On 3 March 2015 at 02:23, Thomas Robitaille wrot
http://2sn.org/python3/color.py
On 30 March 2014 07:27, Emilia Petrisor wrote:
> Hi all,
>
> While working on this IPython Notebook
> http://nbviewer.ipython.org/github/empet/Math/blob/master/DomainColoring.ipynb
> I wanted to compare the visual images of the same complex-valued function
> gener
very similar:
http://www.google.com/finance?hl=en&q=CURRENCY:AUDUSD
On 01/02/2012 05:01 AM, Virgil Stokes wrote:
> The following link should link you to a very interesting graphical display,
>
>
> http://www.ecb.int/stats/exchange/eurofxref/html/eurofxref-graph-nok.en.html
>
> This type of g
mpl version 1.0.0
file: axes.py
line: 7214
<<<
nr, nc = C.shape
===
nr, nc = C.shape[:2]
>>>
...
While you are at it, you could also change line 6759
numRows, numCols = C.shape
to
numRows, numCols = C.shape[:2]
(still some other