Skip to content
Permalink
master

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
  3. bpo-42485: [Doc] Link to PEP 617 from full grammar specification (GH-…

    …23532)
    
    Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
    SnoopJeDi and lysnikolaou committed Nov 30, 2020
  4. bpo-42508: Remove bogus idlelib.pyshell.ModifiedInterpreter attribute (

    …GH-23570)
    
    restart_subprocess is a method of self, the pyshell.InteractiveInterpreter instance. The latter does not have an interp attribute redundantly referring to itself. (The PyShell instance does have an interp attribute, referring to the InteractiveInterpreter instance.)
    terryjreedy committed Nov 30, 2020
  5. bpo-42487: don't call __getitem__ of underlying maps in ChainMap.__it…

    …er__ (GH-23534)
    ap-- committed Nov 30, 2020
  6. bpo-42451: Indicate that PyTuple_GetItem does not support negative in…

    …dices (GH-23529)
    0xYasser committed Nov 30, 2020
  7. bpo-42506: Fix unexpected output in test_format (GH-23564)

    ZackerySpytz committed Nov 30, 2020
  8. bpo-42142: Try to fix timeouts in ttk tests (GH-23474)

    Instead of using wait_visibility() which waits event <VisibilityNotify> in dead loop
    use update() which should proceed all queued events.
    serhiy-storchaka committed Nov 30, 2020

Commits on Nov 29, 2020

  1. bpo-42450: Minor updates to the itertools recipes (GH-23555)

    rhettinger committed Nov 29, 2020
  2. bpo-42406: Fix whichmodule() with multiprocessing (GH-23403)

    * bpo-42406: Fix whichmodule() with multiprocessing
    
    Signed-off-by: Renato L. de F. Cunha <renatoc@br.ibm.com>
    Co-authored-by: Gregory P. Smith <greg@krypto.org>
    renatolfc and gpshead committed Nov 29, 2020
  3. bpo-42392: Remove deprecated loop parameter from docs (GH-23552)

    uriyyo committed Nov 29, 2020
  4. bpo-39096: Improve description of 'e', 'f' and 'g' presentation types (

    …#23537)
    
    * Improve description of 'e', 'f' and 'g' presentation types
    
    * Drop the 'E' from Scientific 'E' notation; remove >= 0 qualifications
    
    * Fix false statement that the alternate form is valid for Decimal
    
    * Nitpick: remove the Harvard/Oxford comma
    
    * Add note that the decimal point is also removed if no digits follow it, except in alternate form
    mdickinson committed Nov 29, 2020

Commits on Nov 28, 2020

  1. bpo-31904: remove libnet dependency from detect_socket() for VxWorks (G…

    …H-23394)
    
    Previously on VxWorks compiling socket extension module needs the libnet to link. Now VxWorks has moved the replied functions to libc. So removing libnet from setup.py.
    pxinwr committed Nov 28, 2020
  2. bpo-31904: skip some tests related to fifo on VxWorks (GH-23473)

    On VxWork RTOS, FIFO must be created under directory "/fifos/". Some test cases related to fifo is invalid on VxWorks. So skip them.
    pxinwr committed Nov 28, 2020
  3. bpo-31904: add shell requirement for test_pipes (GH-23489)

    VxWorks has no user space shell provided so it can't support pipes module. Also add shell requirement for running test_pipes.
    pxinwr committed Nov 28, 2020
  4. skip test_test of test_mailcap on VxWorks (GH-23507)

    pxinwr committed Nov 28, 2020
  5. skip test_getaddrinfo_ipv6_scopeid_symbolic and test_getnameinfo_ipv6…

    …_scopeid_symbolic on VxWorks (GH-23518)
    pxinwr committed Nov 28, 2020
  6. Fix an error in the news entry for _posixsubprocess multiphase init (G…

    …H-23516)
    
    Commit 035deee converted the
    _posixsubprocess module to multiphase initialization, but the news entry
    mentions the _posixshmem module.
    ZackerySpytz committed Nov 28, 2020
Older
You can’t perform that action at this time.