main
Name already in use
Commits on Feb 2, 2023
Commits on Feb 1, 2023
-
Docs: improve accuracy of sqlite3
check_same_threadparameter (#101351 -
-
gh-101467: Correct py.exe handling of prefix matches and cases when o…
…nly one runtime is installed (GH-101468)
-
gh-98831: rewrite PUSH_EXC_INFO and conditional jumps in the instruct…
…ion definition DSL (#101481)
-
-
gh-101498 : Fix asyncio.Timeout example in docs (#101499)
Doc/library/asyncio-task.rst#timeout
-
-
gh-101277: Isolate itertools, add group and _grouper types to module …
…state (#101302) Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
-
gh-101317: Add
ssl_shutdown_timeoutparameter for `asyncio.StreamWr……iter.start_tls` (#101335) Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
-
datetime.rst: fix combine() signature (#101490)
The default `tzinfo` param of the `combine()` signature pseudocode was erroneously `self.tzinfo`. `self` has no meaning in the context of a classmethod, and the datetime class itself has no `tzinfo` attribute. The correct default pseudocode is `time.tzinfo`, reflecting that the default is the `tzinfo` attribute of the `time` parameter.
Commits on Jan 31, 2023
-
gh-98831: rewrite BEFORE_ASYNC_WITH and END_ASYNC_FOR in the instruct…
…ion definition DSL (#101458)
-
gh-101469: Optimise get_io_state() by using _PyModule_GetState() (GH-…
…101470) Automerge-Triggered-By: GH:erlend-aasland
-
gh-99276 - Updated Doc/faq/general.rst (#101396)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
-
-
gh-98831: rewrite GET_LEN, GET_ITER, BEFORE_WITH and a few simple opc…
…odes in the instruction definition DSL (#101443)
-
gh-77607: Improve accuracy of os.path.join docs (#101406)
This is a follow-up to #100811. One of the changes in that PR isn't accurate in that `os.path.join('', '')` will not end in a separator. This reverts that change to the previous wording that used "only", but explicitly calls out the case where the last part ends in a separator, which is what caused confusin in #77607 and motivated the change in #100811.
-
gh-99955: use SUCCESS/ERROR return values in optimizer and assembler.…
… Use RETURN_IF_ERROR where appropriate. Fix a couple of bugs. (#101412)
Commits on Jan 30, 2023
-
gh-101400: Fix incorrect lineno in exception message on continue/brea…
…k which are not in a loop (#101413)
-
GH-101369: Allow macros as family members (#101399)
Also check for instructions straddling families (this includes macro parts).
-
gh-59956: Clarify Runtime State Status Expectations (gh-101308)
A PyThreadState can be in one of many states in its lifecycle, represented by some status value. Those statuses haven't been particularly clear, so we're addressing that here. Specifically: * made the distinct lifecycle statuses clear on PyThreadState * identified expectations of how various lifecycle-related functions relate to status * noted the various places where those expectations don't match the actual behavior At some point we'll need to address the mismatches. (This change also includes some cleanup.) #59956
-
GH-101291: Refactor the
PyLongObjectstruct into object header and ……PyLongValue struct. (GH-101292)
-
Commits on Jan 29, 2023
Commits on Jan 28, 2023
-
Fix trivial typo in shebang example (GH-101385)
The example was showing the current version, but should be pinned to 3.7 to match the example command.
-