main
Name already in use
Commits on Jan 2, 2023
-
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.
Commits on Jan 1, 2023
-
-
gh-100201: Document behavior with a bare
yield
statement (#100416)Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
-
-
gh-100649: Update native_thread_id after fork (gh-100650)
Update native_thread_id after fork
-
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.
-
Commits on Dec 31, 2022
-
-
gh-100633 Tutorial: Fix dataclasses import (#100638)
import dataclass not dataclasses from dataclasses
-
-
GH-85979: Clarify specification of
object.__await__
(#22320)Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Commits on Dec 30, 2022
-
-
gh-100616: Document 'attr' parameter for window.vline() in curses mod…
…ule (#24961) Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
Commits on Dec 29, 2022
-
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.
-
Commits on Dec 28, 2022
-
gh-100585: Fixed a bug where importlib.resources.as_file was leaving …
-
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>
-
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.
-
gh-100540: Remove obsolete '--with-system-ffi' configure option (GH-1…
-
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.
-
-
-