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 Zero
Recipients Zero
Date 2014-07-11.14:29:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1405088980.95.0.801380317459.issue21957@psf.upfronthosting.co.za>
In-reply-to
Content
In the string module, the definition of whitespace is ' \t\n\r\v\f'. However, the representation of string.whitespace is ' \t\n\r\x0b\x0c'. Would it be terribly inconvenient to change the representation of '\x0b\x0c' to '\v\f'? The documentation at https://docs.python.org/3.4/reference/lexical_analysis.html#string-and-bytes-literals lists recognized escape sequences, but string represetations seem to diverge slightly from what is recognized. The same "problem" exists with the representation of bytes.
History
Date User Action Args
2014-07-11 14:29:41Zerosetrecipients: + Zero
2014-07-11 14:29:40Zerosetmessageid: <1405088980.95.0.801380317459.issue21957@psf.upfronthosting.co.za>
2014-07-11 14:29:40Zerolinkissue21957 messages
2014-07-11 14:29:40Zerocreate