Skip to content

Commit

Permalink
Python 3.13.0b2
Browse files Browse the repository at this point in the history
  • Loading branch information
Yhg1s committed Jun 5, 2024
1 parent f561258 commit 3a83b17
Show file tree
Hide file tree
Showing 83 changed files with 847 additions and 201 deletions.
4 changes: 2 additions & 2 deletions Include/patchlevel.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
#define PY_MINOR_VERSION 13
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
#define PY_RELEASE_SERIAL 1
#define PY_RELEASE_SERIAL 2

/* Version as a string */
#define PY_VERSION "3.13.0b1+"
#define PY_VERSION "3.13.0b2"
/*--end constants--*/

/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Expand Down
73 changes: 39 additions & 34 deletions Lib/pydoc_data/topics.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Autogenerated by Sphinx on Wed May 8 11:11:17 2024
# Autogenerated by Sphinx on Wed Jun 5 16:43:53 2024
# as part of the release process.
topics = {'assert': 'The "assert" statement\n'
'**********************\n'
Expand Down Expand Up @@ -5034,6 +5034,12 @@
' 0\n'
' (Pdb)\n'
'\n'
'Changed in version 3.13: The implementation of **PEP 667** means '
'that\n'
'name assignments made via "pdb" will immediately affect the '
'active\n'
'scope, even when running inside an *optimized scope*.\n'
'\n'
'The module defines the following functions; each enters the '
'debugger\n'
'in a slightly different way:\n'
Expand Down Expand Up @@ -5245,7 +5251,8 @@
'* "$_exception": the exception if the frame is raising an '
'exception\n'
'\n'
'Added in version 3.12.\n'
'Added in version 3.12: Added the *convenience variable* '
'feature.\n'
'\n'
'If a file ".pdbrc" exists in the user’s home directory or in '
'the\n'
Expand Down Expand Up @@ -5620,24 +5627,22 @@
'\n'
'interact\n'
'\n'
' Start an interactive interpreter (using the "code" module) '
'whose\n'
' global namespace contains all the (global and local) names '
'found in\n'
' the current scope. Use "exit()" or "quit()" to exit the '
'interpreter\n'
' and return to the debugger.\n'
' Start an interactive interpreter (using the "code" module) in '
'a new\n'
' global namespace initialised from the local and global '
'namespaces\n'
' for the current scope. Use "exit()" or "quit()" to exit the\n'
' interpreter and return to the debugger.\n'
'\n'
' Note:\n'
'\n'
' Because interact creates a new global namespace with the '
'current\n'
' global and local namespace for execution, assignment to '
'variables\n'
' will not affect the original namespaces. However, '
'modification to\n'
' the mutable objects will be reflected in the original '
'namespaces.\n'
' As "interact" creates a new dedicated namespace for code\n'
' execution, assignments to variables will not affect the '
'original\n'
' namespaces. However, modifications to any referenced '
'mutable\n'
' objects will be reflected in the original namespaces as '
'usual.\n'
'\n'
' Added in version 3.2.\n'
'\n'
Expand Down Expand Up @@ -12362,7 +12367,7 @@
'the\n'
' "LC_NUMERIC" locale in some cases.\n'
'\n'
'str.format_map(mapping)\n'
'str.format_map(mapping, /)\n'
'\n'
' Similar to "str.format(**mapping)", except that '
'"mapping" is used\n'
Expand Down Expand Up @@ -14766,10 +14771,10 @@
' The iterator returns "tuple"s containing the "(start_line,\n'
' end_line, start_column, end_column)". The *i-th* tuple '
'corresponds\n'
' to the position of the source code that compiled to the *i-th*\n'
' instruction. Column information is 0-indexed utf-8 byte offsets '
'on\n'
' the given source line.\n'
' to the position of the source code that compiled to the *i-th* '
'code\n'
' unit. Column information is 0-indexed utf-8 byte offsets on the\n'
' given source line.\n'
'\n'
' This positional information can be missing. A non-exhaustive '
'lists\n'
Expand Down Expand Up @@ -14894,16 +14899,16 @@
'| | '
'""f_code"". |\n'
'+----------------------------------------------------+----------------------------------------------------+\n'
'| frame.f_locals | The '
'dictionary used by the frame to look up local |\n'
'| frame.f_locals | The mapping '
'used by the frame to look up local |\n'
'| | variables. '
'If the frame refers to a function or |\n'
'| | '
'comprehension, this may return a write- through |\n'
'| | proxy '
'object. Changed in version 3.13: Return a |\n'
'| | proxy for '
'functions and comprehensions. |\n'
'If the frame refers to an *optimized |\n'
'| | scope*, this '
'may return a write-through proxy |\n'
'| | object. '
'Changed in version 3.13: Return a proxy |\n'
'| | for '
'optimized scopes. |\n'
'+----------------------------------------------------+----------------------------------------------------+\n'
'| frame.f_globals | The '
'dictionary used by the frame to look up global |\n'
Expand Down Expand Up @@ -15312,7 +15317,7 @@
'\n'
' Return a shallow copy of the dictionary.\n'
'\n'
' classmethod fromkeys(iterable[, value])\n'
' classmethod fromkeys(iterable, value=None)\n'
'\n'
' Create a new dictionary with keys from *iterable* and '
'values set\n'
Expand All @@ -15328,7 +15333,7 @@
'distinct\n'
' values, use a dict comprehension instead.\n'
'\n'
' get(key[, default])\n'
' get(key, default=None)\n'
'\n'
' Return the value for *key* if *key* is in the '
'dictionary, else\n'
Expand Down Expand Up @@ -15380,7 +15385,7 @@
'\n'
' Added in version 3.8.\n'
'\n'
' setdefault(key[, default])\n'
' setdefault(key, default=None)\n'
'\n'
' If *key* is in the dictionary, return its value. If '
'not, insert\n'
Expand Down
Loading

0 comments on commit 3a83b17

Please sign in to comment.