main
Name already in use
Commits on Apr 28, 2023
-
-
-
gh-101100: Add reference doc for __post_init__ (#103818)
Signed-off-by: Olga Matoula <olgamatoula@gmail.com>
-
-
-
-
gh-83925: Make asyncio.subprocess communicate similar to non-asyncio (#…
…18650) subprocess's communicate(None) closes stdin of the child process, after sending no (extra) data. Make asyncio variant do the same. This fixes issues with processes that waits for EOF on stdin before continuing.
-
gh-94673: Fix _PyTypes_InitTypes() and get_type_attr_as_size() (gh-10…
Commits on Apr 27, 2023
-
gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)
There were cases where we do unnecessary work for builtin static types. This also simplifies some work necessary for a per-interpreter GIL.
-
-
gh-102628: Fix sqlite3 CLI prompt for Windows console users (#103898)
The prompt will still be incorrect in IDLE on Windows, as IDLE uses CTRL-D for EOF on all platforms.
-
-
GH-103857: Deprecate utcnow and utcfromtimestamp (#103858)
Using `datetime.datetime.utcnow()` and `datetime.datetime.utcfromtimestamp()` will now raise a `DeprecationWarning`. We also have removed our internal uses of these functions and documented the change.
-
GH-90750: Use datetime.fromisocalendar in _strptime (#103802)
Use datetime.fromisocalendar in _strptime This unifies the ISO → Gregorian conversion logic and improves handling of invalid ISO weeks.
-
gh-102765: Update ntpath.isdir/isfile/islink/exists to use GetFileInf…
…ormationByName when available (GH-103485)
-
-
gh-103092: Isolate _ctypes, part 1 (#103893)
Establish global state and port the following types to heap types: - DictRemover_Type - PyCArg_Type - PyCThunk_Type - PyCField_Type - StructParam_Type
-
gh-103607: Fix
pause_reading
to work when called from `connection_m……ade` in `asyncio`. (#17425) Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
-
gh-103883: Doc: Move PyUnicode_FromObject doc (#103913)
This API is one of Unicode creator APIs.
-
gh-89415: Add source-specific multicast constants to socket module (#…
…103684) Add socket options for source-specific multicast when present as C #defines. Co-authored-by: Oleg Iarygin <dralife@yandex.ru>
-
gh-103656: Transfer f-string buffers to parser to avoid use-after-free (
GH-103896) Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
-
gh-62432: unittest runner: Exit code 5 if no tests were run (#102051)
As discussed in https://discuss.python.org/t/unittest-fail-if-zero-tests-were-discovered/21498/7 It is common for test runner misconfiguration to fail to find any tests, This should be an error. Fixes: #62432
Commits on Apr 26, 2023
-
gh-60436: fix curses textbox backspace/del (#103783)
Co-authored-by: Łukasz Langa <lukasz@langa.pl> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> Co-authored-by: Michael Blahay <mblahay@gmail.com>
-
gh-48241: Clarify URL needs to be encoded when provided to urlopen an…
…d Request (#103855) Co-authored-by: Łukasz Langa <lukasz@langa.pl>
-