This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skrah
Recipients belopolsky, seberg, skrah
Date 2014-10-03.18:27:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412360828.94.0.164186989674.issue22445@psf.upfronthosting.co.za>
In-reply-to
Content
Okay, the whole thing isn't that urgent either.


Sorry for the confusion w.r.t slicing: I misremembered what the
latest numpy version did:

a)

   >>> x = np.array([[1,2,3,]])
   >>> x.strides
   (9223372036854775807, 8)


b)
 
   >>> x = np.array([[1,2,3], [4,5,6]])[:1]
   >>> x.strides
   (24, 8)


Somehow I thought that case b) would also produce the special marker,
but it doesn't, so all is well.
History
Date User Action Args
2014-10-03 18:27:08skrahsetrecipients: + skrah, belopolsky, seberg
2014-10-03 18:27:08skrahsetmessageid: <1412360828.94.0.164186989674.issue22445@psf.upfronthosting.co.za>
2014-10-03 18:27:08skrahlinkissue22445 messages
2014-10-03 18:27:08skrahcreate