Skip to content
Permalink
master

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
  7. Fix dis markup (GH-23524)

    andresdelfino committed Nov 28, 2020
  8. Fix multiprocessing markup (GH-23525)

    andresdelfino committed Nov 28, 2020
  9. bpo-41818: Fix test_master_read() so that it succeeds on all platform…

    …s that either raise OSError or return b"" upon reading from master (GH-23536)
    
    Signed-off-by: Soumendra Ganguly <soumendraganguly@gmail.com>
    8vasu committed Nov 28, 2020
  10. bpo-34215: Clarify IncompleteReadError message when "expected" is None (

    GH-21925)
    
    Co-Authored-By: Tyler Bell <mrbell321@gmail.com>
    ZackerySpytz and mrbell321 committed Nov 28, 2020
  11. bpo-41241: Unnecessary Type casting in 'if condition' (GH-21396)

    This is my first issue!
    So, if there's anything wrong, please tell me!
    
    Also, thank you always for all the contributors!
    
    Automerge-Triggered-By: GH:asvetlov
    marload committed Nov 28, 2020
  12. bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subpr…

    …ocess (GH-23521)
    uriyyo committed Nov 28, 2020
  13. bpo-42452: Improve colorsys.rgb_to_hls code (GH-23306)

    Cache repeated sum and difference to make code slightly faster and easier to read.
    jjerphan committed Nov 28, 2020

Commits on Nov 27, 2020

  1. bpo-41818: Make test_openpty() avoid unexpected success due to number…

    … of rows and/or number of columns being == 0. (GH-23526)
    8vasu committed Nov 27, 2020
  2. bpo-17852: Doc: Fix the tutorial about closing files (GH-23135)

    Co-authored-by: Inada Naoki <songofacandy@gmail.com>
    Volker-Weissmann and methane committed Nov 27, 2020

Commits on Nov 26, 2020

  1. bpo-41332: Added missing connect_accepted_socket() to AbstractEventLo…

    …op (GH-21533)
    
    Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
    Co-authored-by: Kyle Stanley <aeros167@gmail.com>
    3 people committed Nov 26, 2020
  2. bpo-42392: Remove loop parameter from asyncio.streams (GH-23517)

    uriyyo committed Nov 26, 2020
Older
You can’t perform that action at this time.