Skip to content
Permalink
master

Commits on Sep 15, 2020

  1. bpo-41776: Revise example of "continue" in the tutorial documentation (…

    …GH-22234)
    
    Revise example of "continue" in the tutorial documentation
    neerajsamtani committed Sep 15, 2020
  2. bpo-41513: Remove broken tests that fail on Gentoo (GH-22249)

    rhettinger committed Sep 15, 2020

Commits on Sep 14, 2020

  1. bpo-40721: add note about enum member name case (GH-22231)

    * UPPER_CASE preferred as enum members are constants
    ethanfurman committed Sep 14, 2020
  2. bpo-41744: Package python.props with correct name in NuGet package (G…

    …H-22154)
    
    NuGet automatically includes .props file from the build directory in the
    target using the package, but only if the .props file has the correct
    name: it must be $(id).props
    
    Rename python.props correspondingly in all the nuspec variants. Also
    keep python.props as it were for backward compatibility.
    vslavik committed Sep 14, 2020
  3. bpo-41646: Mention path-like objects support in the docs for shutil.c…

    …opy() (GH-22208)
    ZackerySpytz committed Sep 14, 2020
  4. Fix a typo in locale Docs (#22233)

    abdnh committed Sep 14, 2020
    1
  5. bpo-41513: Add docs and tests for hypot() (GH-22238)

    rhettinger committed Sep 14, 2020
  6. bpo-39883: Update macOS installer copy of LICENSE. (GH-22235)

    ned-deily committed Sep 14, 2020

Commits on Sep 13, 2020

  1. bpo-41778: Change a punctuation on documentation. (GH-22229)

    On this paragrapah the clarification about IIS7 seems there's not
    connection beacuase is in other sentence. Move the punctuation
    to connect both the last sentence with the information in the
    parenthesis.
    
    I think the NEWS is not necessary here.
    
    Automerge-Triggered-By: @ericvsmith
    eamanu committed Sep 13, 2020
  2. bpo-33239: Fix default value of 'buffering' parameter in docs of temp…

    …file.* functions (GH-21763)
    
    `None` doesn't work:
    
    ```python
    >>> import tempfile
    >>> tempfile.TemporaryFile(buffering=None)
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "/home/sergey/tmp/cpython-dev/Lib/tempfile.py", line 607, in TemporaryFile
        return _io.open(fd, mode, buffering=buffering,
    TypeError: 'NoneType' object cannot be interpreted as an integer
    ```
    
    Automerge-Triggered-By: @vsajip
    sir-sigurd committed Sep 13, 2020

Commits on Sep 12, 2020

  1. bpo-41672: Fix type mismatches in imaplib docs (GH-22207)

    norbertcyran committed Sep 12, 2020
  2. bpo-39651: Fix asyncio proactor _write_to_self() (GH-22197)

    Fix a race condition in the call_soon_threadsafe() method of
    asyncio.ProactorEventLoop: do nothing if the self-pipe socket has
    been closed.
    vstinner committed Sep 12, 2020
  3. bpo-41731: Make test_cmd_line_script pass with -vv (GH-22206)

    Argument script_exec_args is usually an absolute file name,
    but twice has form ['-m', 'module_name'].
    terryjreedy committed Sep 12, 2020
  4. bpo-41729: Fix test_winconsole failures (3) and hang (GH-22146)

    The problems occured with a repository build on machine
    with freshly updated Windows 10 Pro.
    terryjreedy committed Sep 12, 2020

Commits on Sep 11, 2020

  1. [doc] struct: update note about network byte order form to be more he…

    …lpful (GH-22201)
    
    Update the sentence to provide some context on why network byte order is defined as big endian.
    theacodes committed Sep 11, 2020

Commits on Sep 10, 2020

  1. Doc: Fix alphabetical ordering of removeprefix/suffix. (GH-22194)

    benjaminp committed Sep 10, 2020
  2. bpo-37149: Change Shipman tkinter link from archive.org to TkDocs (GH…

    …-22188)
    
    The new link responds much faster and begins with a short explanation of the status of the doc.
    roseman committed Sep 10, 2020
  3. bpo-1635741: Port cmath to multi-phase init (PEP 489) (GH-22165)

    koubaa committed Sep 10, 2020
  4. Update logging documentation to tidy up formatting (GH-22173)

    bharel committed Sep 10, 2020
  5. [doc] Remove superfluous comment about equal in f-strings (GH-22006)

    Automerge-Triggered-By: @kushaldas
    andresdelfino committed Sep 10, 2020

Commits on Sep 9, 2020

  1. Update idlelib/help.html to current IDLE doc (GH-22181)

    terryjreedy committed Sep 9, 2020
  2. Add missing colon to IDLE doc markup (GH-22007)

    andresdelfino committed Sep 9, 2020
  3. bpo-41428: Implementation for PEP 604 (GH-21515)

    See https://www.python.org/dev/peps/pep-0604/ for more information.
    
    Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
    MaggieMoss and pablogsal committed Sep 9, 2020
  4. bpo-41687: Fix error handling in Solaris sendfile implementation (GH-…

    …22128)
    
    I just realized that my recent PR with sendfile on Solaris ([PR 22040](#22040)) has broken error handling.
    
    Sorry for that, this simple followup fixes that.
    
    Automerge-Triggered-By: @1st1
    kulikjak committed Sep 9, 2020
  5. Add minor clarification in logging documentation. (GH-22167)

    vsajip committed Sep 9, 2020
  6. Fix compiler warnings in init_dump_ascii_wstr() (GH-22150)

    Fix GCC 9.3 (using -O3) warnings on x86:
    
    initconfig.c: In function β€˜init_dump_ascii_wstr’:
    initconfig.c:2679:34: warning: format β€˜%lc’ expects argument of type
    β€˜wint_t’, but argument 2 has type β€˜wchar_t’ {aka β€˜long int’}
     2679 |             PySys_WriteStderr("%lc", ch);
    initconfig.c:2682:38: warning: format β€˜%x’ expects argument of type
    β€˜unsigned int’, but argument 2 has type β€˜wchar_t’ {aka β€˜long int’}
     2682 |             PySys_WriteStderr("\\x%02x", ch);
    initconfig.c:2686:38: warning: format β€˜%x’ expects argument of type
    β€˜unsigned int’, but argument 2 has type β€˜wchar_t’ {aka β€˜long int’}
     2686 |             PySys_WriteStderr("\\U%08x", ch);
    initconfig.c:2690:38: warning: format β€˜%x’ expects argument of type
    β€˜unsigned int’, but argument 2 has type β€˜wchar_t’ {aka β€˜long int’}
     2690 |             PySys_WriteStderr("\\u%04x", ch);
    vstinner committed Sep 9, 2020
  7. bpo-41726: Update the refcounts info of PyType_FromModuleAndSpec in r…

    …efcounts.dat (GH-22112)
    
    Update refcounts info of PyType_FromModuleAndSpec in refcounts.dat
    shihai1991 committed Sep 9, 2020
  8. bpo-1635741: port scproxy to multi-phase init (GH-22164)

    koubaa committed Sep 9, 2020
  9. bpo-41525: Make the Python program help ASCII-only (GH-21836)

    serhiy-storchaka committed Sep 9, 2020

Commits on Sep 8, 2020

  1. [doc] Fix padding in timeit (GH-22152)

    Compare -p and -u options help in rendered output to see the difference.
    andresdelfino committed Sep 8, 2020
  2. Fix typo in typing.py (GH-22121)

    This is a trivial PR to fix a typo in a docstring in typing.py. From reverences -> references
    gbleaney committed Sep 8, 2020
  3. Fix incorrect bpo number in change notes. (GH-22151)

    markshannon committed Sep 8, 2020
  4. bpo-1635741: Port mashal module to multi-phase init (#22149)

    Port the 'mashal' extension module to the multi-phase initialization
    API (PEP 489).
    vstinner committed Sep 8, 2020
Older
You can’t perform that action at this time.