mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
9 lines
385 B
Rust
9 lines
385 B
Rust
/// See: <https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals>
|
|
|
|
pub const TRIPLE_QUOTE_PREFIXES: &[&str] = &[
|
|
"u\"\"\"", "u'''", "r\"\"\"", "r'''", "U\"\"\"", "U'''", "R\"\"\"", "R'''", "\"\"\"", "'''",
|
|
];
|
|
|
|
pub const SINGLE_QUOTE_PREFIXES: &[&str] = &[
|
|
"u\"", "u'", "r\"", "r'", "u\"", "u'", "r\"", "r'", "U\"", "U'", "R\"", "R'", "\"", "'",
|
|
];
|