Skip to content
Permalink
master

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
  11. Add doctests to the descriptor HowTo (GH-23500)

    rhettinger committed Nov 25, 2020

Commits on Nov 24, 2020

  1. bpo-40170: Hide impl detail of Py_TRASHCAN_BEGIN macro (GH-23235)

    The Py_TRASHCAN_BEGIN macro no longer accesses PyTypeObject attributes,
    but now can get the condition by calling the new private
    _PyTrash_cond() function which hides implementation details.
    shihai1991 committed Nov 24, 2020
  2. bpo-42392: Remove loop parameter form asyncio locks and Queue (#23420)

    Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
    uriyyo and asvetlov committed Nov 24, 2020
  3. bpo-42212: smelly.py also checks the dynamic library (GH-23423)

    The smelly.py script now also checks the Python dynamic library and
    extension modules, not only the Python static library. Make also the
    script more verbose: explain what it does.
    
    The GitHub Action job now builds Python with the libpython dynamic
    library.
    vstinner committed Nov 24, 2020
  4. bpo-41100: in test_platform, ignore 10.16 (GH-23485)

    ned-deily committed Nov 24, 2020
  5. bpo-41100: minor build installer fixes (GH-23480)

    ned-deily committed Nov 24, 2020

Commits on Nov 23, 2020

  1. Typo (#23482)

    jcea committed Nov 23, 2020
  2. Added support for negative indexes to PurePath.parents (GH-21799)

    This commit also fixes up some of the overlapping documentation changed
    in bpo-35498, which added support for indexing with slices.
    
    Fixes bpo-21041.
    https://bugs.python.org/issue21041
    
    Co-authored-by: Paul Ganssle <p.ganssle@gmail.com>
    Co-authored-by: Rémi Lapeyre <remi.lapeyre@henki.fr>
    3 people committed Nov 23, 2020
  3. bpo-15450: Allow subclassing of dircmp (GH-23424) (#23424)

    Co-authored-by: Chris Jerdonek <chris.jerdonek@gmail.com>
    NickCrews and cjerdonek committed Nov 23, 2020
  4. bpo-28850: Fix PrettyPrinter.format overrides ignored for contents of…

    … small containers (GH-22120)
    iritkatriel committed Nov 23, 2020

Commits on Nov 22, 2020

  1. bpo-42328: Fix tkinter.ttk.Style.map(). (GH-23300)

    The function accepts now the representation of the default state as
    empty sequence (as returned by Style.map()).
    The structure of the result is now the same on all platform
    and does not depend on the value of wantobjects.
    serhiy-storchaka committed Nov 22, 2020
  2. bpo-42435: Speed up comparison of bytes and bytearray object (GH--23461)

    * Speed up comparison of bytes objects with non-bytes objects when
      option -b is specified.
    * Speed up comparison of bytarray objects with non-buffer object.
    serhiy-storchaka committed Nov 22, 2020
  3. Doc: fix typo in typing.Type docs (GH-23460)

    belm0 committed Nov 22, 2020
  4. bpo-42391: Clarify documentation of TestCase.assertIs (GH-23348)

    Removing 'evaluate' makes it more consistent with other assertX entries.
    cool-RR committed Nov 22, 2020
Older
You can’t perform that action at this time.