• Home
  • Raw
  • Download

Lines Matching full:single

9    single: lexical analysis
10 single: parser
11 single: token
47 .. index:: single: line structure
58 single: logical line
59 single: physical line
60 single: line joining
61 single: NEWLINE token
93 single: comment
94 single: hash character
142 single: physical line
143 single: line joining
144 single: line continuation
145 single: backslash character
150 a single logical line, deleting the backslash and the following end-of-line
190 .. index:: single: blank line
206 single: indentation
207 single: whitespace
208 single: leading whitespace
209 single: space
210 single: tab
211 single: grouping
212 single: statement grouping
228 indentation in a single source file. It should also be noted that different
237 single: INDENT token
238 single: DEDENT token
243 Before the first line of the file is read, a single zero is pushed on the stack;
314 single: identifier
315 single: name
336 single: keyword
337 single: reserved word
408 single: literal
409 single: constant
419 .. index:: single: string literal
423 .. index:: single: ASCII@ASCII
445 single: triple-quoted string
446 single: Unicode Consortium
447 single: string; Unicode
448 single: raw string
450 In plain English: String literals can be enclosed in matching single quotes
452 of three single or double quotes (these are generally referred to as
471 single: physical line
472 single: escape sequence
473 single: Standard C
474 single: C
487 | ``\'`` | Single quote (``'``) | |
520 .. index:: single: ASCII@ASCII
545 .. index:: single: unrecognized escape sequence
562 single backslash* (since the backslash would escape the following quote
563 character). Note also that a single backslash followed by a newline is
605 single: number
606 single: numeric literal
607 single: integer literal
608 single: plain integer literal
609 single: long integer literal
610 single: floating point literal
611 single: hexadecimal literal
612 single: binary literal
613 single: octal literal
614 single: decimal literal
615 single: imaginary literal
616 single: complex; literal
716 .. index:: single: operators
736 .. index:: single: delimiters
759 .. index:: single: ASCII@ASCII