Skip to content
Permalink
Branch: master
Commits on Dec 16, 2019
  1. bpo-39041: Add GitHub Actions badge to README.rst (GH-17628)

    zooba committed Dec 16, 2019
    Also skip build for doc-only changes and enable on push
  2. bpo-39041: Add GitHub Actions support (GH-17594)

    zooba committed Dec 16, 2019
  3. bpo-38348: Extend command line options of ast parsing tool (GH-16540)

    isidentical authored and vstinner committed Dec 16, 2019
    Add -i and --indent (indentation level), and --no-type-comments
    (type comments) command line options to ast parsing tool.
  4. bpo-38870: Remove dead code related with argument unparsing (GH-17613)

    isidentical authored and pablogsal committed Dec 16, 2019
  5. bpo-38811: Check for presence of os.link method in pathlib (GH-17225)

    tohojo authored and vstinner committed Dec 16, 2019
    Commit 6b5b013 ("bpo-26978: Implement pathlib.Path.link_to (Using
    os.link) (GH-12990)") introduced a new link_to method in pathlib. However,
    this makes pathlib crash when the 'os' module is missing a 'link' method.
    
    Fix this by checking for the presence of the 'link' method on pathlib
    module import, and if it's not present, turn it into a runtime error like
    those emitted when there is no lchmod() or symlink().
    
    Signed-off-by: Toke Høiland-Jørgensen <toke@redhat.com>
Commits on Dec 15, 2019
  1. bpo-39033: Fix NameError in zipimport during hash validation (GH-17588)

    tirkarthi authored and ncoghlan committed Dec 15, 2019
    Patch by Karthikeyan Singaravelan.
  2. bpo-38316: Fix co_stacksize documentation (GH-16983)

    isidentical authored and vstinner committed Dec 15, 2019
  3. bpo-38629: implement __floor__ and __ceil__ for float type (GH-16985)

    isidentical authored and vstinner committed Dec 15, 2019
  4. The comment in ast_for_namedexpr shouldn't include if_stmt (GH-17586)

    gvanrossum authored and miss-islington committed Dec 15, 2019
    Automerge-Triggered-By: @gvanrossum
  5. bpo-38021: Modify AIX platform_tag so it covers PEP 425 needs (GH-17303)

    aixtools authored and ncoghlan committed Dec 15, 2019
    Provides a richer platform tag for AIX that we expect to be sufficient for PEP 425
    binary distribution identification. Any backports to earlier Python versions will be
    handled via setuptools.
    
    Patch by Michael Felt.
Commits on Dec 14, 2019
  1. bpo-39035: travis: Don't use beta group (GH-17602)

    methane committed Dec 14, 2019
  2. Fix typo in site module (GH-17597)

    Penlect authored and pablogsal committed Dec 14, 2019
  3. Fix elif start column offset when there is an else following (GH-17596)

    lysnikolaou authored and pablogsal committed Dec 14, 2019
  4. Add PYTHONUTF8 to commandline usage. (GH-17587)

    methane and vstinner committed Dec 14, 2019
    Co-Authored-By: Victor Stinner <vstinner@python.org>
Commits on Dec 13, 2019
  1. bpo-36406: Handle namespace packages in doctest (GH-12520)

    tirkarthi authored and brettcannon committed Dec 13, 2019
Commits on Dec 12, 2019
  1. bpo-39031: Include elif keyword when producing lineno/col-offset info…

    lysnikolaou authored and miss-islington committed Dec 12, 2019
    … for if_stmt (GH-17582)
    
    When parsing an "elif" node, lineno and col_offset of the node now point to the "elif" keyword and not to its condition, making it consistent with the "if" node.
    
    
    https://bugs.python.org/issue39031
    
    
    
    Automerge-Triggered-By: @pablogsal
  2. Fix warnings in test_asyncio.test_base_events (#17577)

    aeros authored and ambv committed Dec 12, 2019
    Co-authored-by: tirkarthi
Commits on Dec 11, 2019
  1. bpo-38614: Use support timeout constants (GH-17572)

    vstinner committed Dec 11, 2019
  2. bpo-38614: Use test.support.SHORT_TIMEOUT constant (GH-17566)

    vstinner committed Dec 11, 2019
    Replace hardcoded timeout constants in tests with SHORT_TIMEOUT of
    test.support, so it's easier to ajdust this timeout for all tests at
    once.
    
    SHORT_TIMEOUT is 30 seconds by default, but it can be longer
    depending on --timeout command line option.
    
    The change makes almost all timeouts longer, except
    test_reap_children() of test_support which is made 2x shorter:
    SHORT_TIMEOUT should be enough. If this test starts to fail,
    LONG_TIMEOUT should be used instead.
    
    Uniformize also "from test import support" import in some test files.
  3. bpo-39022, bpo-38594: Sync with importlib_metadata 1.3 (GH-17568)

    jaraco committed Dec 11, 2019
    * bpo-39022, bpo-38594: Sync with importlib_metadata 1.3 including improved docs for custom finders and better serialization support in EntryPoints.
    
    * 📜🤖 Added by blurb_it.
    
    * Correct module reference
Commits on Dec 10, 2019
  1. bpo-39012: Fix RC version suffix for nuget release files (GH-17564)

    zooba committed Dec 10, 2019
  2. bpo-38614: Use test.support.INTERNET_TIMEOUT constant (GH-17565)

    vstinner committed Dec 10, 2019
    Replace hardcoded timeout constants in tests with INTERNET_TIMEOUT of
    test.support, so it's easier to ajdust this timeout for all tests at
    once.
  3. bpo-38614: Use test.support.LONG_TIMEOUT constant (GH-17562)

    vstinner committed Dec 10, 2019
    Replace hardcoded timeout constants in tests with LONG_TIMEOUT of
    test.support, so it's easier to ajdust this timeout for all tests at
    once.
    
    LONG_TIMEOUT is 5 minutes by default, but it can be longer depending
    on --timeout command line option.
  4. bpo-38614: Use default join_thread() timeout in tests (GH-17559)

    vstinner committed Dec 10, 2019
    Tests no longer pass a timeout value to join_thread() of
    test.support: use the default join_thread() timeout instead
    (SHORT_TIMEOUT constant of test.support).
  5. bpo-38614: Use test.support.LOOPBACK_TIMEOUT constant (GH-17554)

    vstinner committed Dec 10, 2019
    Replace hardcoded timeout constants in tests with LOOPBACK_TIMEOUT of
    test.support, so it's easier to ajdust this timeout for all tests at
    once.
  6. Minor fixes to the NEWS entries (GH-17556)

    pablogsal committed Dec 10, 2019
  7. bpo-39004: increment large sendfile() test timeout (GH-17552)

    giampaolo committed Dec 10, 2019
  8. Fix Windows release builds (GH-17550)

    zooba committed Dec 10, 2019
  9. Clean imports in test_unparse (GH-17545)

    pablogsal committed Dec 10, 2019
  10. bpo-38943: Fix IDLE autocomplete window not always appearing (GH-17416)

    JohnnyNajera authored and terryjreedy committed Dec 10, 2019
    This has happened on some versions of Ubuntu.
Commits on Dec 9, 2019
  1. bpo-38944: Escape key now closes IDLE completion windows. (GH-17419)

    JohnnyNajera authored and terryjreedy committed Dec 9, 2019
  2. bpo-39009: Fix typo in test__locale (GH-17544)

    timgates42 authored and pablogsal committed Dec 9, 2019
  3. bpo-27961: Replace PY_ULLONG_MAX with ULLONG_MAX (GH-17539)

    sir-sigurd authored and vstinner committed Dec 9, 2019
  4. bpo-39007: Add auditing events to functions in winreg (GH-17541)

    zooba committed Dec 9, 2019
    Also allows winreg.CloseKey() to accept same types as other functions.
Older
You can’t perform that action at this time.