Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Apr 28, 2023

  1. gh-101100: Add reference doc for __post_init__ (#103818)

    Signed-off-by: Olga Matoula <olgamatoula@gmail.com>
    olgarithms committed Apr 28, 2023
  2. 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.
    marmarek committed Apr 28, 2023
  3. gh-94673: Fix _PyTypes_InitTypes() and get_type_attr_as_size() (gh-10…

    …3961)
    
    This change has two small parts:
    
    1. a follow-up to gh-103940 with one case I missed
    2. adding a missing return that I noticed while working on related code
    ericsnowcurrently committed Apr 28, 2023

Commits on Apr 27, 2023

  1. 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.
    ericsnowcurrently committed Apr 27, 2023
  2. 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.
    erlend-aasland committed Apr 27, 2023
  3. 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.
    pganssle committed Apr 27, 2023
  4. 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.
    pganssle committed Apr 27, 2023
  5. gh-102765: Update ntpath.isdir/isfile/islink/exists to use GetFileInf…

    …ormationByName when available (GH-103485)
    finnagin committed Apr 27, 2023
  6. 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
    erlend-aasland committed Apr 27, 2023
  7. 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>
    Itayazolay and kumaraditya303 committed Apr 27, 2023
  8. gh-103883: Doc: Move PyUnicode_FromObject doc (#103913)

    This API is one of Unicode creator APIs.
    methane committed Apr 27, 2023
  9. 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>
    rmehyde and arhadthedev committed Apr 27, 2023
  10. gh-103656: Transfer f-string buffers to parser to avoid use-after-free (

    GH-103896)
    
    Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
    lysnikolaou and pablogsal committed Apr 27, 2023
  11. 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
    stefanor committed Apr 27, 2023

Commits on Apr 26, 2023

  1. 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>
    4 people committed Apr 26, 2023
  2. gh-48241: Clarify URL needs to be encoded when provided to urlopen an…

    …d Request (#103855)
    
    Co-authored-by: Łukasz Langa <lukasz@langa.pl>
    mblahay and ambv committed Apr 26, 2023
Older