Skip to content
Permalink
Branch: master
Commits on Dec 16, 2019
  1. Add whatsnew for removal of asyncio.loop.create_datagram_endpoint()'s…

    aeros authored and 1st1 committed Dec 16, 2019
    … *reuse_address* parameter (#17595)
Commits on Dec 12, 2019
  1. Fix warnings in test_asyncio.test_base_events (#17577)

    aeros authored and ambv committed Dec 12, 2019
    Co-authored-by: tirkarthi
Commits on Dec 9, 2019
  1. bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (

    aeros authored and ambv committed Dec 9, 2019
Commits on Nov 15, 2019
  1. bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161)

    aeros authored and miss-islington committed Nov 15, 2019
Commits on Oct 29, 2019
  1. Fix asyncio.wait() 3.8 whatsnew entry (GH-16975)

    aeros authored and 1st1 committed Oct 29, 2019
Commits on Oct 24, 2019
  1. Add missing asyncio changes from 3.8 whatsnew (GH-16911)

    aeros authored and 1st1 committed Oct 24, 2019
Commits on Oct 22, 2019
  1. Fix Zope URL (GH-16880)

    aeros authored and terryjreedy committed Oct 22, 2019
Commits on Oct 10, 2019
  1. docs: Add asyncio source code links (GH-16640)

    aeros authored and 1st1 committed Oct 10, 2019
Commits on Oct 1, 2019
  1. Fix and improve `asyncio.run()` docs (GH-16403)

    aeros authored and 1st1 committed Oct 1, 2019
Commits on Sep 26, 2019
  1. Doc: Several fixes and improvements for 3.9 whatsnew (GH-16375)

    aeros authored and matrixise committed Sep 26, 2019
Commits on Sep 21, 2019
  1. Doc: Add whatsnew entry for loop.shutdown_default_executor() (GH-16308)

    aeros authored and matrixise committed Sep 21, 2019
Commits on Sep 20, 2019
  1. Doc: Remove provisional note for asyncio.run() (GH-16310)

    aeros authored and miss-islington committed Sep 20, 2019
    Based on a comment from @asvetlov #15735 (comment), this removes the provisional note for ``asyncio.run()`` in the documentation.
    
    Automerge-Triggered-By: @1st1
Commits on Sep 19, 2019
  1. bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_exe…

    aeros authored and asvetlov committed Sep 19, 2019
    …cutor() (GH-15735)
Commits on Sep 14, 2019
  1. bpo-37635: Update arg name for seek() in IO tutorial (GH-16147)

    aeros authored and miss-islington committed Sep 14, 2019
    Typically, the second positional argument for ``seek()`` is *whence*. That is the POSIX standard name (http://man7.org/linux/man-pages/man3/lseek.3p.html) and the name listed in the documentation for ``io`` module (https://docs.python.org/3/library/io.html#io.IOBase.seek). 
    
    The tutorial for IO is the only location where the second positional argument for ``seek()`` is referred to as *from_what*. I suspect this was created at an early point in Python's history, and was never updated (as this section predates the GitHub repository):
    
    ```
    $ git grep "from_what"
    Doc/tutorial/inputoutput.rst:To change the file object's position, use ``f.seek(offset, from_what)``.  The position is computed
    Doc/tutorial/inputoutput.rst:the *from_what* argument.  A *from_what* value of 0 measures from the beginning
    Doc/tutorial/inputoutput.rst:the reference point.  *from_what* can be omitted and defaults to 0, using the
    ```
    
    For consistency, I am suggesting that the tutorial be updated to use the same argument name as the IO documentation and POSIX standard for ``seek()``, particularly since this is the only location where *from_what* is being used.
    
    Note: In the POSIX standard, *whence* is technically the third positional argument, but the first argument *fildes* (file descriptor) is implicit in Python.
    
    
    https://bugs.python.org/issue37635
Commits on Sep 11, 2019
  1. bpo-37585: Add clarification regarding comparing dict.values() (GH-14954

    aeros authored and brettcannon committed Sep 11, 2019
    )
Commits on Sep 10, 2019
  1. Docs: Small tweaks to c-api/intro#Include_Files (GH-14698)

    aeros authored and benjaminp committed Sep 10, 2019
Commits on Jul 12, 2019
  1. bpo-19696: Move threaded_import_hangers (GH-14655)

    aeros authored and miss-islington committed Jul 12, 2019
    Move `threaded_import_hangers`, a dependency of `test_threaded_import`, to the directory `test_importlib/`. Also update the import references for `threaded_import_hangers` in `test_threaded_import`.
    
    
    
    
    
    https://bugs.python.org/issue19696
Commits on Jul 7, 2019
  1. bpo-37478: Specify possible exceptions for os.chdir() (GH-14611)

    aeros authored and terryjreedy committed Jul 7, 2019
Commits on Jul 5, 2019
  1. Move test_threaded_import.py to test_importlib/ (GH-14582)

    aeros authored and brettcannon committed Jul 5, 2019
Commits on Jul 3, 2019
  1. bpo-19696: Replace deprecated method in "test_import_pkg.py" (GH-14466)

    aeros authored and miss-islington committed Jul 3, 2019
    Replacing the deprecated method "random.choose" to "random.choice" was technically not part of the original issue. However, it was discussed in the talk page and involved one of the files being moved. I assumed this was too minor to justify the creation of a separate issue. 
    
    Also, I added my name to the contributors list in Misc/ACKS. This will be my third PR to cpython, forgot to do it in the previous ones. 
    
    
    
    https://bugs.python.org/issue19696
Commits on Jun 28, 2019
  1. bpo-19696: Moved "test_pkgimport.py" to dir "test_importlib" (GH-14303)

    aeros authored and miss-islington committed Jun 28, 2019
    Also renamed the file to "test_pkg_import.py" to better follow the naming convention. Component of issue 19696.
    
    
    
    
    
    https://bugs.python.org/issue19696
Commits on Jun 21, 2019
  1. Docs: Improved phrasing (GH-14069)

    aeros authored and willingc committed Jun 21, 2019
    * Docs: Improved phrasing 
    
    Removed usage of second person pronouns in the section and made the assumption of "uneasiness" in code style transition more neutral.
    
    * Removed trailing whitespace on line 34
You can’t perform that action at this time.