Skip to content
Permalink
master

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

Commits on Nov 25, 2020

  1. bpo-41818: test_openpty succeed on Gentoo, don't expect to fail on th…

    …is platform (GH-23514)
    asvetlov committed Nov 25, 2020
  2. Typo: fix inverted sense of statement (GH-23288)

    Looks like a "not" was inadvertently omitted in commit e6a7ea4.
    Classmethods are useful when data stored in specific instances are *not*
    needed.
    
    Automerge-Triggered-By: GH:JulienPalard
    basak committed Nov 25, 2020
  3. bpo-41818: Updated tests for the standard pty library (GH-22962)

    8vasu committed Nov 25, 2020
  4. bpo-42299: Remove formatter module (GH-23476)

    corona10 committed Nov 25, 2020
  5. bpo-42392: Improve removal of *loop* parameter in asyncio primitives (G…

    …H-23499)
    
    * Update code after merge review from 1st1
    
    * Use a sentinel approach for loop parameter
    Remove unnecessary _get_running_loop patching
    
    * Use more clear function name (_verify_parameter_is_marker -> _verify_no_loop)
    
    * Add init method to _LoopBoundMixin to check that loop param wasn't used
    uriyyo committed Nov 25, 2020
  6. bpo-42202: Store func annotations as a tuple (GH-23316)

    Reduce memory footprint and improve performance of loading modules having many func annotations.
    
      >>> sys.getsizeof({"a":"int","b":"int","return":"int"})
      232
      >>> sys.getsizeof(("a","int","b","int","return","int"))
      88
    
    The tuple is converted into dict on the fly when `func.__annotations__` is accessed first.
    
    Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
    Co-authored-by: Inada Naoki <songofacandy@gmail.com>
    3 people committed Nov 25, 2020
  7. Add more tests to the descriptor howto guide (GH-23506)

    rhettinger committed Nov 25, 2020
  8. bpo-12800: tarfile: Restore fix from 011525e (GH-21409)

    Restore fix from 011525e.
    JulienPalard committed Nov 25, 2020
  9. bpo-42238: Doc: Remove make suspicious from the CI and docs builds. (G…

    …H-23313)
    
    It probably helped a lot a while back, but may not be as usefull
    today.  We'll continue monitoring it before deletion, so true
    positives can be migrated to rstlint.
    JulienPalard committed Nov 25, 2020
  10. Doc: Minor fixes (GH-23422)

    Fidget-Spinner committed Nov 25, 2020
Older
You can’t perform that action at this time.