Skip to content
Permalink
Branch: master
Commits on Dec 15, 2019
  1. 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
  2. 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.
  5. bpo-39008: Require Py_ssize_t for PySys_Audit formats rather than rai…

    zooba committed Dec 9, 2019
    …se a deprecation warning (GH-17540)
  6. bpo-39003: Make sure all test are the same when using -R in test_unpa…

    pablogsal committed Dec 9, 2019
    …rse (GH-17537)
  7. bpo-39002: Fix simple typo: tranlation -> translation (GH-17517)

    timgates42 authored and rhettinger committed Dec 9, 2019
  8. Fix APPX registry key generation (GH-17489)

    zooba committed Dec 9, 2019
  9. bpo-20443: No longer make sys.argv[0] absolute for script (GH-17534)

    vstinner committed Dec 9, 2019
    In Python 3.9.0a1, sys.argv[0] was made an asolute path if a filename
    was specified on the command line. Revert this change, since most
    users expect sys.argv to be unmodified.
  10. bpo-34776: Fix dataclasses to support __future__ "annotations" mode (#…

    1st1 authored and ambv committed Dec 9, 2019
  11. bpo-38992: avoid fsum test failure from constant-folding (GH-17513)

    mdickinson committed Dec 9, 2019
    * Issue 38992: avoid fsum test failure
    
    * Add NEWS entry
  12. bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (

    aeros authored and ambv committed Dec 9, 2019
  13. bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)

    vstinner committed Dec 9, 2019
    Fix asyncio when the ssl module is missing: only check for
    ssl.SSLSocket instance if the ssl module is available.
Older
You can’t perform that action at this time.