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 petriborg
Recipients christian.heimes, jcea, mark.dickinson, petriborg, serhiy.storchaka, vstinner
Date 2015-04-03.20:25:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428092711.7.0.380617452608.issue23786@psf.upfronthosting.co.za>
In-reply-to
Content
Test 1
Python 3.4.3 built by GCC 4.9.2 is:
>>> str(memoryview(b'abcdefghijklmnopqrstuvwxyz')[1:], 'ascii')
'bcdefghijklmnopqrstuvwxyz'


Test 2
Python 3.4.3 built by GCC 4.6.2 is (no patches applied)
This build will core dump if I run -m test test_hash.
>>> str(memoryview(b'abcdefghijklmnopqrstuvwxyz')[1:], 'ascii')
'bcdefghijklmnopqrstuvwxyz'
History
Date User Action Args
2015-04-03 20:25:11petriborgsetrecipients: + petriborg, jcea, mark.dickinson, vstinner, christian.heimes, serhiy.storchaka
2015-04-03 20:25:11petriborgsetmessageid: <1428092711.7.0.380617452608.issue23786@psf.upfronthosting.co.za>
2015-04-03 20:25:11petriborglinkissue23786 messages
2015-04-03 20:25:11petriborgcreate