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 eric.smith
Recipients Stone, eric.smith, ned.deily, serhiy.storchaka, zach.ware
Date 2016-11-07.19:08:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1478545697.37.0.207457401429.issue28633@psf.upfronthosting.co.za>
In-reply-to
Content
Works:

>>> f'' b'' 
  File "<stdin>", line 1
SyntaxError: cannot mix bytes and nonbytes literals

Fails:

>>> b'' f''
Segmentation fault
$

Regular strings work:
>>> '' b''
  File "<stdin>", line 1
SyntaxError: cannot mix bytes and nonbytes literals
>>> b'' ''
  File "<stdin>", line 1
SyntaxError: cannot mix bytes and nonbytes literals
>>>
History
Date User Action Args
2016-11-07 19:08:17eric.smithsetrecipients: + eric.smith, ned.deily, zach.ware, serhiy.storchaka, Stone
2016-11-07 19:08:17eric.smithsetmessageid: <1478545697.37.0.207457401429.issue28633@psf.upfronthosting.co.za>
2016-11-07 19:08:17eric.smithlinkissue28633 messages
2016-11-07 19:08:17eric.smithcreate