Skip to content
Permalink
master

Commits on Dec 4, 2020

  1. bpo-26131: Deprecate usage of load_module() (GH-23469)

    Raise an ImportWarning when the import system falls back on load_module(). As for implementations of load_module(), raise a DeprecationWarning.
    brettcannon committed Dec 4, 2020
  2. 1
  3. bpo-17735: inspect.findsource now raises OSError when co_lineno is ou…

    …t of range (GH-23633)
    
    This can happen when a file was edited after it was imported.
    iritkatriel committed Dec 4, 2020
  4. bpo-31904: fix test_doctest.py failures for VxWorks (GH-23419)

    Fix test_doctest.py failures for VxWorks by avoiding exact error message checks. (better for everyone all around)
    pxinwr committed Dec 4, 2020
  5. bpo-41473: Reenable test_gdb on gdb 9.2 and newer (GH-23637)

    https://bugzilla.redhat.com/show_bug.cgi?id=1866884 is fixed in gdb
    10.1 (failed to reproduce on gdb-10.1-1.fc34.aarch64).
    vstinner committed Dec 4, 2020
  6. bpo-42246: Don't forget the entry block when ensuring that all exits …

    …have a line number (GH-23636)
    
    Don't forget the entry block when ensuring that all exits have a line number.
    markshannon committed Dec 4, 2020
  7. bpo-42562: Fix issue when dis failed to parse function that has no li…

    …ne numbers (GH-23632)
    
    Fix issue when dis failed to parse function that has only annotations
    uriyyo committed Dec 4, 2020

Commits on Dec 3, 2020

  1. bpo-42262: Py_NewRef() casts its argument to PyObject* (GH-23626)

    Write also unit tests on Py_NewRef() and Py_XNewRef().
    vstinner committed Dec 3, 2020
  2. bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)

    Fix test_asyncio.test_call_later() race condition: don't measure
    asyncio performance in the call_later() unit test. The test failed
    randomly on the CI.
    vstinner committed Dec 3, 2020
  3. bpo-42431: Fix outdated bytes comments (GH-23458)

    Also move definitions of internal macros F_LJUST etc to private header.
    serhiy-storchaka committed Dec 3, 2020
  4. Remove the conditional for setting query. (#23604)

    orsenthil committed Dec 3, 2020
  5. bpo-42504: fix for MACOSX_DEPLOYMENT_TARGET=11 (GH-23556)

    macOS releases numbering has changed as of macOS 11 Big Sur.  Previously, major releases were of the form 10.x, 10.x+1, 10.x+2, etc; as of Big Sur, they are now x, x+1, etc, so, for example, 10.15, 10.15.1, ..., 10.15.7, 11, 11.0.1, 11.1, ..., 12, 12.1, etc. Allow Python to build with single-digit deployment target values. Patch provided by FX Coudert.
    fxcoudert committed Dec 3, 2020

Commits on Dec 2, 2020

  1. bpo-42246: Make sure that line number is correct after a return, as r…

    …equired by PEP 626 (GH-23495)
    
    Make sure that line number is correct after a return, as defined by PEP 626.
    markshannon committed Dec 2, 2020
  2. bpo-42500: Fix recursion in or after except (GH-23568)

    * Use counter, rather boolean state when handling soft overflows.
    markshannon committed Dec 2, 2020

Commits on Dec 1, 2020

  1. bpo-31904: Fix test_netrc for VxWorks RTOS (GH-21675)

    Fix test_netrc on VxWorks: create temporary directories using temp_cwd().
    pxinwr committed Dec 1, 2020
  2. bpo-37221: PyCode_New() didn't change in Python 3.8 (GH-23595)

    vstinner committed Dec 1, 2020
  3. build(deps): bump actions/upload-artifact from v2.2.0 to v2.2.1 (GH-2…

    …3583)
    
    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from v2.2.0 to v2.2.1.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@v2.2.0...726a6dc)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot committed Dec 1, 2020
  4. build(deps): bump actions/cache from v2.1.2 to v2.1.3 (23582)

    Bumps [actions/cache](https://github.com/actions/cache) from v2.1.2 to v2.1.3.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Commits](actions/cache@v2.1.2...0781355)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot committed Dec 1, 2020
  5. [doc] Fix abc.update_abstractmethods markup (GH-23576)

    Add link to ABCMeta while at it.
    andresdelfino committed Dec 1, 2020
  6. Fix bz2 examples markup (#23580)

    andresdelfino committed Dec 1, 2020
  7. bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)

    No longer use deprecated aliases to functions:
    
    * Replace PyObject_MALLOC() with PyObject_Malloc()
    * Replace PyObject_REALLOC() with PyObject_Realloc()
    * Replace PyObject_FREE() with PyObject_Free()
    * Replace PyObject_Del() with PyObject_Free()
    * Replace PyObject_DEL() with PyObject_Free()
    vstinner committed Dec 1, 2020
  8. bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)

    No longer use deprecated aliases to functions:
    
    * Replace PyMem_MALLOC() with PyMem_Malloc()
    * Replace PyMem_REALLOC() with PyMem_Realloc()
    * Replace PyMem_FREE() with PyMem_Free()
    * Replace PyMem_Del() with PyMem_Free()
    * Replace PyMem_DEL() with PyMem_Free()
    
    Modify also the PyMem_DEL() macro to use directly PyMem_Free().
    vstinner committed Dec 1, 2020
  9. bpo-31904: Fix fifo test cases for VxWorks (GH-20254)

    pxinwr committed Dec 1, 2020
  10. bpo-38200: Add itertools.pairwise() (GH-23549)

    rhettinger committed Dec 1, 2020

Commits on Nov 30, 2020

  1. bpo-31904: Support signal module on VxWorks (GH-23391)

    pxinwr committed Nov 30, 2020
  2. bpo-28468: Add platform.freedesktop_os_release() (GH-23492)

    Add platform.freedesktop_os_release() function to parse freedesktop.org
    os-release files.
    
    Signed-off-by: Christian Heimes <christian@python.org>
    Co-authored-by: Victor Stinner <vstinner@python.org>
    tiran and vstinner committed Nov 30, 2020
Older
You can’t perform that action at this time.