• Home
  • Raw
  • Download

Lines Matching full:single

68    single: # (hash); comment
82 single: # (hash); source encoding declaration
121 a single logical line, deleting the backslash and the following end-of-line
161 .. index:: single: blank line
196 indentation in a single source file. It should also be noted that different
209 Before the first line of the file is read, a single zero is pushed on the stack;
337 single: keyword
338 single: reserved word
355 single: _, identifiers
356 single: __, identifiers
404 single: ' (single quote); string literal
405 single: " (double quote); string literal
406 single: u'; string literal
407 single: u"; string literal
445 single: """; string literal
446 single: '''; string literal
448 In plain English: Both types of literals can be enclosed in matching single quotes
450 of three single or double quotes (these are generally referred to as
456 single: b'; bytes literal
457 single: b"; bytes literal
465 single: r'; raw string literal
466 single: r"; raw string literal
485 single: f'; formatted string literal
486 single: f"; formatted string literal
498 single: \ (backslash); escape sequence
499 single: \\; escape sequence
500 single: \a; escape sequence
501 single: \b; escape sequence
502 single: \f; escape sequence
503 single: \n; escape sequence
504 single: \r; escape sequence
505 single: \t; escape sequence
506 single: \v; escape sequence
507 single: \x; escape sequence
508 single: \N; escape sequence
509 single: \u; escape sequence
510 single: \U; escape sequence
523 | ``\'`` | Single quote (``'``) | |
604 backslashes). Specifically, *a raw literal cannot end in a single backslash*
606 that a single backslash followed by a newline is interpreted as those two
634 single: formatted string literal
635 single: interpolated string literal
636 single: string; formatted literal
637 single: string; interpolated literal
638 single: f-string
639 single: {} (curly brackets); in formatted string literal
640 single: ! (exclamation); in formatted string literal
641 single: : (colon); in formatted string literal
671 with the corresponding single curly brace. A single opening curly
777 single: 0b; integer literal
778 single: 0o; integer literal
779 single: 0x; integer literal
780 single: _ (underscore); in numeric literal
823 single: . (dot); in numeric literal
824 single: e; in numeric literal
825 single: _ (underscore); in numeric literal
855 single: j; in numeric literal
880 .. index:: single: operators
897 .. index:: single: delimiters