language-python-0.2: Parsing and pretty printing of Python code.Source codeContentsIndex
Language.Python.Common.StringEscape
Portabilityghc
Stabilityexperimental
Maintainerbjpop@csse.unimelb.edu.au
Contents
String conversion.
Digits allowed in octal and hex representation.
Description

Conversion to/from escaped characters in strings. Note: currently does not support escaped Unicode character names.

See:

Synopsis
unescapeString :: String -> String
unescapeRawString :: String -> String
octalDigits :: String
hexDigits :: String
String conversion.
unescapeString :: String -> StringSource
Convert escaped sequences of characters into real characters in a normal Python string.
unescapeRawString :: String -> StringSource
Convert escaped sequences of characters into real characters in a raw Python string. Note: despite their name, Python raw strings do allow a small set of character escapings, namely the single and double quote characters and the line continuation marker.
Digits allowed in octal and hex representation.
octalDigits :: StringSource
hexDigits :: StringSource
Produced by Haddock version 2.4.2