Skip to content
Permalink
master

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

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
  5. bpo-1635741: Port _string module to multi-phase init (GH-22148)

    Port the _string extension module to the multi-phase initialization
    API (PEP 489).
    vstinner committed Sep 8, 2020
  6. bpo-1635741: Convert _sha256 types to heap types (GH-22134)

    Convert the _sha256 extension module types to heap types.
    koubaa committed Sep 8, 2020
  7. bpo-41732: add iterator to memoryview (GH-22119)

    dxflores committed Sep 8, 2020

Commits on Sep 7, 2020

  1. bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909)

    Remove code required to support SQLite pre 3.7.3.
    
    Co-written-by: Berker Peksag <berker.peksag@gmail.com>
    Co-written-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
    erlend-aasland committed Sep 7, 2020
  2. bpo-41316: Make tarfile follow specs for FNAME (GH-21511)

    tarfile writes full path to FNAME field of GZIP format instead of just basename if user specified absolute path. Some archive viewers may process file incorrectly. Also it creates security issue because anyone can know structure of directories on system and know username or other personal information.
    
    RFC1952 says about FNAME:
    This is the original name of the file being compressed, with any directory components removed.
    
    So tarfile must remove directory names from FNAME and write only basename of file.
    
    Automerge-Triggered-By: @jaraco
    ArtemSBulgakov committed Sep 7, 2020
  3. bpo-1635741: Port _overlapped module to multi-phase init (GH-22051)

    Port the _overlapped extension module to multi-phase initialization (PEP 489).
    koubaa committed Sep 7, 2020
  4. bpo-1635741: Port _opcode module to multi-phase init (PEP 489) (GH-22050

    )
    koubaa committed Sep 7, 2020
  5. bpo-1635741 port zlib module to multi-phase init (GH-21995)

    Port the zlib extension module to multi-phase initialization (PEP 489).
    koubaa committed Sep 7, 2020
  6. [doc] Add link to Generic in typing (GH-22125)

    andresdelfino committed Sep 7, 2020

Commits on Sep 6, 2020

  1. bpo-41513: Expand comments and add references for a better understand…

    …ing (GH-22123)
    rhettinger committed Sep 6, 2020
  2. bpo-1635741: Port _sha1, _sha512, _md5 to multiphase init (GH-21818)

    Port the _sha1, _sha512, and _md5 extension modules
    to multi-phase initialization API (PEP 489).
    koubaa committed Sep 6, 2020

Commits on Sep 5, 2020

  1. [doc] Fix padding in some typing definitions (GH-22114)

    Automerge-Triggered-By: @gvanrossum
    andresdelfino committed Sep 5, 2020
  2. Fix documented Python version for venv --upgrade-deps (GH-22113)

    Fixes incorrect Python version added for `venv` `--upgrade-deps` in #13100. This feature was added in Python 3.9 not 3.8.
    
    Relates to:
    
    - 
    - 1cba1c9
    
    Automerge-Triggered-By: @vsajip
    johnthagen committed Sep 5, 2020
  3. bpo-40318: Migrate to SQLite3 trace v2 API (GH-19581)

    Ref. https://sqlite.org/c3ref/trace_v2.html
    
    Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
    erlend-aasland and pablogsal committed Sep 5, 2020

Commits on Sep 4, 2020

  1. bpo-41627: Distinguish 32 and 64-bit user site packages on Windows (G…

    …H-22098)
    
    Also fixes the error message returned when sysconfig fails to interpolate a variable correctly.
    zooba committed Sep 4, 2020
  2. bpo-38585: Remove references to defusedexpat (GH-22095)

    defusedexpat is not maintained.
    ZackerySpytz committed Sep 4, 2020
Older
You can’t perform that action at this time.