Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
0.12.0
-
None
Description
Currently a binary constant declared as
const binary FOO = "bar"
would generate a regular string constant in Python:
FOO = "bar"
which is not really a binary string. Instead a bytestring literal should be generated:
FOO = b"bar"
Attachments
Issue Links
- links to