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 pitrou, rhansen, seberg, skrah
Date 2015-02-01.09:10:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <20150201090616.GA3380@bytereef.org>
In-reply-to <1422780335.82.0.323908543504.issue23352@psf.upfronthosting.co.za>
Content
> How might an application break with this change?

func1:
   if (!PyBuffer_IsContiguous(view, 'C'))
       error();

   func2(view);

func2:
   assert(view->suboffsets == NULL);
   ...

Yes, I *did* insert sanity checks like this in some places.
History
Date User Action Args
2015-02-01 09:10:04skrahsetrecipients: + skrah, pitrou, rhansen, seberg
2015-02-01 09:10:04skrahlinkissue23352 messages
2015-02-01 09:10:04skrahcreate