OptionalinlineOptional inline comment attached to this node.
1-indexed source line the node starts on.
0-indexed byte offset (UTF-8) within lineno where the node starts.
Optionalend_1-indexed source line the node ends on.
Optionalend_0-indexed byte offset (UTF-8) within end_lineno where the node ends.
Optionalkind"u" for a u"..."/U"..." string literal, matching CPython's ast.Constant.kind; absent for every other literal (including plain, raw, byte, and f/t-string constants — CPython's kind never holds anything but "u" or None).
Optionalquote_Original prefix+quote text of a string literal, e.g. ", ''', rb".
A py-ast extension (not part of CPython's ast.Constant) kept so the
unparser can round-trip the exact original quote style; not set on
non-string constants or on nodes that weren't produced by this
library's parser.
A literal constant: string, number, boolean,
None, bytes, complex, tuple of constants, orEllipsis.