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 Jan 2, 2023

  1. gh-100428: Make int documentation more accurate (#100436)

    - Remove first link to lexical definition of integer literal, since it
      doesn't apply (differs in handling of leading zeros, base needs to be
      explicitly specified, unicode digits are allowed)
    - Better describe handling of leading zeros, unicode digits, underscores
    - Base 0 does not work exactly as like a code literal, since it allows
      Unicode digits. Link code literal to lexical definition of integer
      literal.
    hauntsaninja committed Jan 2, 2023

Commits on Jan 1, 2023

  1. gh-99953: Purge mention of numeric param style from sqlite3 docs (#10…

    …0630)
    
    The PEP-249 numeric style has never been supported by sqlite3.
    erlend-aasland committed Jan 1, 2023
  2. gh-87980: Fix the error message for disallowed __weakref__ slots (#25362

    )
    
    Fix the error message for disallowed `__weakref__` slots.
    maggyero committed Jan 1, 2023
  3. gh-100201: Document behavior with a bare yield statement (#100416)

    Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
    ramvikrams and CAM-Gerlach committed Jan 1, 2023
  4. gh-100649: Update native_thread_id after fork (gh-100650)

    Update native_thread_id after fork
    P403n1x87 committed Jan 1, 2023
  5. gh-100546: Remove incorrect positional-only marker from eval (#100547)

    All the arguments are positional-only.
    
    The current status after #99476 seems to be to not use positional-only
    markers in documentation, hence I've simply removed it.
    hauntsaninja committed Jan 1, 2023

Commits on Dec 31, 2022

  1. gh-100633 Tutorial: Fix dataclasses import (#100638)

    import dataclass not dataclasses from dataclasses
    OTheDev committed Dec 31, 2022
  2. GH-85979: Clarify specification of object.__await__ (#22320)

    Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
    plammens and kumaraditya303 committed Dec 31, 2022

Commits on Dec 30, 2022

  1. gh-100616: Document 'attr' parameter for window.vline() in curses mod…

    …ule (#24961)
    
    Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
    mathieui and slateny committed Dec 30, 2022

Commits on Dec 29, 2022

  1. gh-100228: Warn from os.fork() if other threads exist. (#100229)

    Not comprehensive, best effort warning. There are cases when threads exist on some platforms that this code cannot detect. macOS when API permissions allow and Linux with a readable /proc procfs present are the currently supported cases where a warning should show up reliably.
    
    Starting with a DeprecationWarning for now, it is less disruptive than something like RuntimeWarning and most likely to only be seen in people's CI tests - a good place to start with this messaging.
    gpshead committed Dec 29, 2022
  2. gh-100540: Remove obsolete Modules/_ctypes/darwin/ dlfcn shim (GH-100541

    )
    
    As far as I can tell, this hasn't been actually used since Mac OS X 10.2.
    zware committed Dec 29, 2022

Commits on Dec 28, 2022

  1. gh-100585: Fixed a bug where importlib.resources.as_file was leaving …

    …file pointers open (GH-100586)
    
    * gh-100585: Fixed open fp bug in the imporlib module
    
    * Added news for gh-100585
    samety committed Dec 28, 2022
  2. gh-94172: Update docs for params removed in 3.12 (#100431)

    Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
    Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
    3 people committed Dec 28, 2022
  3. gh-100540: Remove unused Modules/_ctypes/libffi_osx/ (GH-100543)

    It was an ancient, modified copy of libffi that has not been in use
    since GH-22855.
    zware committed Dec 28, 2022
  4. gh-100540: Remove obsolete '--with-system-ffi' configure option (GH-1…

    …00544)
    
    It has had no effect on non-macOS platforms for a long time, and has had
    the non-obvious effect of invoking `pkg_config` and not setting
    `-DUSING_APPLE_OS_LIBFFI` on macOS since GH-22855.
    zware committed Dec 28, 2022
  5. gh-100540: Remove unnecessary '-DMACOSX' for ctypes on macOS (GH-100542)

    The define was only used to protect a `#pragma clang diagnostic`
    setting, which is already better guarded by `__clang__` anwyay.
    zware committed Dec 28, 2022
  6. Remove skipped test in test for async mocks. (#100559)

    Remove skipped test.
    
    See discussion on #25326.
    Fix is apparently here, but no-one is confident to review and land: #25347.
    cjw296 committed Dec 28, 2022
Older