Re: [Numpy-discussion] Numpy discussion - was: Raveling, reshape order keyword unnecessarily confuses index and memory ordering

2013-04-08 Thread Charles R Harris
On Mon, Apr 8, 2013 at 5:30 PM, Paul Ivanov wrote: > Ralf Gommers, on 2013-04-09 00:06, wrote: > > G. website improvement --> thank you, desperately needed. Here's some > login > > credentials and a medal. > > see https://github.com/numpy/numpy.org/pull/1 > > Do I really get a medal? ;) > Send

Re: [Numpy-discussion] Numpy discussion - was: Raveling, reshape order keyword unnecessarily confuses index and memory ordering

2013-04-08 Thread Paul Ivanov
Ralf Gommers, on 2013-04-09 00:06, wrote: > G. website improvement --> thank you, desperately needed. Here's some login > credentials and a medal. see https://github.com/numpy/numpy.org/pull/1 Do I really get a medal? ;) best, -- Paul Ivanov 314 address only used for lists, off-list direct em

Re: [Numpy-discussion] Numpy discussion - was: Raveling, reshape order keyword unnecessarily confuses index and memory ordering

2013-04-08 Thread Ralf Gommers
On Mon, Apr 8, 2013 at 2:04 AM, Paul Ivanov wrote: > I just wanted to chime in that while the document on contributing > to numpy [2] is pretty thorough in terms of the technical details > expected of a submission - it makes practically no allusions to > the social aspects of contributing changes

[Numpy-discussion] Time Zones and datetime64

2013-04-08 Thread Chris Barker - NOAA Federal
Recent discussion has made it clear that the timezone handling in the current (numpy1.7) version of datetime64 is broken. Below is a discussion of some possible solutions, hopefully including most of the comments made on the recent thread on this list. http://mail.scipy.org/pipermail/numpy-discuss

Re: [Numpy-discussion] Numpy discussion - was: Raveling, reshape order keyword unnecessarily confuses index and memory ordering

2013-04-08 Thread josef . pktd
On Mon, Apr 8, 2013 at 5:38 AM, Pauli Virtanen wrote: > Paul Ivanov gmail.com> writes: > [clip] >> In a related note - it should be made clear who the core >> committers are, at this point. The github organization lists the >> following eight: >> >> charris >> cournape >> njsmith >> pv >> rgommer

Re: [Numpy-discussion] Numpy discussion - was: Raveling, reshape order keyword unnecessarily confuses index and memory ordering

2013-04-08 Thread Pauli Virtanen
Paul Ivanov gmail.com> writes: [clip] > In a related note - it should be made clear who the core > committers are, at this point. The github organization lists the > following eight: > > charris > cournape > njsmith > pv > rgommers > rkern > seberg > teoliphant > > Is that the core, the whole co

Re: [Numpy-discussion] Sources more confusing in Python

2013-04-08 Thread Chris Barker - NOAA Federal
On Sun, Apr 7, 2013 at 2:34 PM, Steve Waterbury wrote: > Point taken -- just didn't want pip to be sold short. > I'm one of those spoiled Linux people, obviously ... ;) I really like pip -- but it is missing what is really a key feature for Windows (and to a slighltyl lessoe extent, OS-X) -- the

Re: [Numpy-discussion] Sources more confusing in Python

2013-04-08 Thread Happyman
Thanks a lot, friends! I got it. By the way I used this one: http://www.python-excel.org/ .  I guess this link provides the similar module like shown in https://pypi.python.org/pypi. Воскресенье, 7 апреля 2013, 17:06 +02:00 от Daπid : >On 7 April 2013 16:53, Happyman < bahtiyor_zohi...@mai

[Numpy-discussion] The "I" dtype character

2013-04-08 Thread Georg Brandl
Hi, is it intentional that "I" is supported as a dtype character, but cannot be suffixed with a size? >>> dtype('i1') dtype('int8') >>> dtype('I1') dtype('uint32') I know "u" is documented as unsigned integer, but this seems an unnecessary restriction that is confusing. thanks, Georg _