Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-114277: Add return types to sqlite methods in docs #59

Merged
merged 27 commits into from
Jan 19, 2024

Commits on Jan 17, 2024

  1. Configuration menu
    Copy the full SHA
    7a0ac89 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    029ecee View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    33b47a2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0b541f6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7573c44 View commit details
    Browse the repository at this point in the history
  6. pythongh-38807: Fix race condition in Lib/trace.py (pythonGH-110143)

    Instead of checking if a directory does not exist and thereafter
    creating it, directly call os.makedirs() with the exist_ok=True.
    buermarc authored Jan 17, 2024
    Configuration menu
    Copy the full SHA
    78fcde0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f56d132 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. pythongh-112984: Fix test_ctypes.test_loading.test_load_dll_with_flag…

    …s when directory name includes a dot (pythonGH-114217)
    zooba authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    9455403 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4c7e09d View commit details
    Browse the repository at this point in the history
  3. pythongh-104522: Fix OSError raised when run a subprocess (python#114195

    )
    
    Only set filename to cwd if it was caused by failed chdir(cwd).
    
    _fork_exec() now returns "noexec:chdir" for failed chdir(cwd).
    
    Co-authored-by: Robert O'Shea <PurityLake@users.noreply.github.com>
    serhiy-storchaka and PurityLake authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    e2c097e View commit details
    Browse the repository at this point in the history
  4. pythongh-113205: test_multiprocessing.test_terminate: Test the API on…

    … threadpools (python#114186)
    
    pythongh-113205: test_multiprocessing.test_terminate: Test the API works on threadpools
    
    Threads can't be forced to terminate (without potentially corrupting too much
    state), so the  expected behaviour of `ThreadPool.terminate` is to wait for
    the currently executing tasks to finish.
    
    The entire test was skipped in pythonGH-110848 (0e9c364).
    Instead of skipping it entirely, we should ensure the API eventually succeeds:
    use a shorter timeout.
    
    For the record: on my machine, when the test is un-skipped, the task manages to
    start in about 1.5% cases.
    encukou authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    c1db960 View commit details
    Browse the repository at this point in the history
  5. pythongh-114211: Update EmailMessage doc about ordered keys (python#1…

    …14224)
    
    Ordered keys are no longer unlike 'real dict's.
    terryjreedy authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    8cda720 View commit details
    Browse the repository at this point in the history
  6. pythongh-96905: In IDLE code, stop redefining built-ins 'dict' and 'o…

    …bject' (python#114227)
    
    Prefix 'dict' with 'o', 'g', or 'l' for 'object', 'global', or 'local'.
    Suffix 'object' with '_'.
    terryjreedy authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    6f4b242 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ba683c2 View commit details
    Browse the repository at this point in the history
  8. pythongh-104522: Fix test_subprocess failure when build Python in the…

    … root home directory (pythonGH-114236)
    
    * pythongh-104522: Fix test_subprocess failure when build Python in the root home directory
    
    EPERM is raised when setreuid() fails.
    EACCES is set in execve() when the test user has not access to sys.executable.
    serhiy-storchaka authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    311d1e2 View commit details
    Browse the repository at this point in the history
  9. pythongh-114050: Fix crash when more than two arguments are passed to…

    … int() (pythonGH-114067)
    
    Co-authored-by: Kirill Podoprigora <kirill.bast9@mail.ru>
    kcatss and Eclips4 authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    a571a2f View commit details
    Browse the repository at this point in the history
  10. pythongh-103092: Convert some _ctypes metatypes to heap types (pyth…

    …onGH-113620)
    
    
    Co-authored-by: Erlend E. Aasland <erlend@python.org>
    aisk and erlend-aasland authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    8e31cdc View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b8f29b1 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    2ff072f View commit details
    Browse the repository at this point in the history
  13. pythongh-108303: Move all doctest related files and tests to `Lib/tes…

    …t/test_doctest/` (python#112109)
    
    Co-authored-by: Brett Cannon <brett@python.org>
    sobolevn and brettcannon authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    9c93350 View commit details
    Browse the repository at this point in the history
  14. pythongh-114198: Rename dataclass __replace__ argument to 'self' (pyt…

    …hongh-114251)
    
    This change renames the dataclass __replace__ method's first argument
    name from 'obj' to 'self'.
    pschanely authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    339fc3c View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    2d3f6b5 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    7fa511b View commit details
    Browse the repository at this point in the history
  17. pythongh-112092: clarify unstable ABI recompilation requirements (pyt…

    …hon#112093)
    
    Use different versions in the examples for when extensions do and do not need to be recompiled to make the examples easier to understand.
    DerSchinken authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    68a7b78 View commit details
    Browse the repository at this point in the history
  18. pythongh-114123: Migrate docstring from _csv to csv (python#114124)

    Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
    Co-authored-by: Éric <merwok@netwok.org>
    3 people authored Jan 18, 2024
    Configuration menu
    Copy the full SHA
    72abb8c View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    d544285 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    a34e4db View commit details
    Browse the repository at this point in the history