Python 3.12.0

This commit is contained in:
Thomas Wouters 2023-10-02 13:44:36 +02:00
parent f4f919e3d8
commit 0fb18b02c8
12 changed files with 134 additions and 72 deletions

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Autogenerated by Sphinx on Mon Sep 18 21:47:37 2023
# Autogenerated by Sphinx on Mon Oct 2 13:45:14 2023
# as part of the release process.
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
@ -13016,71 +13016,71 @@ topics = {'assert': 'The "assert" statement\n'
'those\n'
'used by Standard C. The recognized escape sequences are:\n'
'\n'
'+-------------------+-----------------------------------+---------+\n'
'| Escape Sequence | Meaning | Notes '
'|\n'
'|===================|===================================|=========|\n'
'| "\\"<newline> | Backslash and newline ignored | '
'(1) |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\\\" | Backslash ("\\") '
'+---------------------------+-----------------------------------+---------+\n'
'| Escape Sequence | Meaning | '
'Notes |\n'
'|===========================|===================================|=========|\n'
'| "\\"<newline> | Backslash and newline ignored '
'| (1) |\n'
'+---------------------------+-----------------------------------+---------+\n'
'| "\\\\" | Backslash '
'("\\") | |\n'
'+---------------------------+-----------------------------------+---------+\n'
'| "\\\'" | Single quote '
'("\'") | |\n'
'+---------------------------+-----------------------------------+---------+\n'
'| "\\"" | Double quote (""") '
'| |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\\'" | Single quote ("\'") '
'+---------------------------+-----------------------------------+---------+\n'
'| "\\a" | ASCII Bell (BEL) '
'| |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\"" | Double quote (""") '
'+---------------------------+-----------------------------------+---------+\n'
'| "\\b" | ASCII Backspace (BS) '
'| |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\a" | ASCII Bell (BEL) '
'+---------------------------+-----------------------------------+---------+\n'
'| "\\f" | ASCII Formfeed (FF) '
'| |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\b" | ASCII Backspace (BS) '
'+---------------------------+-----------------------------------+---------+\n'
'| "\\n" | ASCII Linefeed (LF) '
'| |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\f" | ASCII Formfeed (FF) '
'+---------------------------+-----------------------------------+---------+\n'
'| "\\r" | ASCII Carriage Return (CR) '
'| |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\n" | ASCII Linefeed (LF) '
'+---------------------------+-----------------------------------+---------+\n'
'| "\\t" | ASCII Horizontal Tab (TAB) '
'| |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\r" | ASCII Carriage Return (CR) '
'+---------------------------+-----------------------------------+---------+\n'
'| "\\v" | ASCII Vertical Tab (VT) '
'| |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\t" | ASCII Horizontal Tab (TAB) '
'| |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\v" | ASCII Vertical Tab (VT) '
'| |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\ooo" | Character with octal value *ooo* | '
'(2,4) |\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\xhh" | Character with hex value *hh* | '
'(3,4) |\n'
'+-------------------+-----------------------------------+---------+\n'
'+---------------------------+-----------------------------------+---------+\n'
'| "\\*ooo*" | Character with octal value *ooo* '
'| (2,4) |\n'
'+---------------------------+-----------------------------------+---------+\n'
'| "\\x*hh*" | Character with hex value *hh* '
'| (3,4) |\n'
'+---------------------------+-----------------------------------+---------+\n'
'\n'
'Escape sequences only recognized in string literals are:\n'
'\n'
'+-------------------+-----------------------------------+---------+\n'
'| Escape Sequence | Meaning | Notes '
'|\n'
'|===================|===================================|=========|\n'
'| "\\N{name}" | Character named *name* in the | '
'(5) |\n'
'| | Unicode database | '
'|\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\uxxxx" | Character with 16-bit hex value | '
'(6) |\n'
'| | *xxxx* | '
'|\n'
'+-------------------+-----------------------------------+---------+\n'
'| "\\Uxxxxxxxx" | Character with 32-bit hex value | '
'(7) |\n'
'| | *xxxxxxxx* | '
'|\n'
'+-------------------+-----------------------------------+---------+\n'
'+---------------------------+-----------------------------------+---------+\n'
'| Escape Sequence | Meaning | '
'Notes |\n'
'|===========================|===================================|=========|\n'
'| "\\N{*name*}" | Character named *name* in the '
'| (5) |\n'
'| | Unicode database '
'| |\n'
'+---------------------------+-----------------------------------+---------+\n'
'| "\\u*xxxx*" | Character with 16-bit hex value '
'| (6) |\n'
'| | *xxxx* '
'| |\n'
'+---------------------------+-----------------------------------+---------+\n'
'| "\\U*xxxxxxxx*" | Character with 32-bit hex value '
'| (7) |\n'
'| | *xxxxxxxx* '
'| |\n'
'+---------------------------+-----------------------------------+---------+\n'
'\n'
'Notes:\n'
'\n'