Skip to content
Permalink
master

Commits on Sep 9, 2020

  1. bpo-1635741: port scproxy to multi-phase init (GH-22164)

    koubaa committed Sep 9, 2020
  2. 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
  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-1635741: Port the termios to multi-phase init (PEP 489) (GH-22139)

    koubaa committed Sep 8, 2020
  8. 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 _curses_panel to multi-phase init (PEP 489) (GH-21986)

    koubaa committed Sep 7, 2020
  4. 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
  5. bpo-1635741: Port _opcode module to multi-phase init (PEP 489) (GH-22050

    )
    koubaa committed Sep 7, 2020
  6. 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
  7. [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
  4. bpo-41687: Fix sendfile implementation to work with Solaris (#22040)

    kulikjak 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
  3. bpo-41721: Add xlc options (GH-22096)

    skrah committed Sep 4, 2020
  4. bpo-40486: Specify what happens if directory content change diring it…

    …eration (GH-22025)
    serhiy-storchaka committed Sep 4, 2020
  5. bpo-41638: Improve ProgrammingError message for absent parameter. (GH…

    …-21999)
    
    It contains now the name of the parameter instead of its index when parameters
    are supplied as a dict.
    serhiy-storchaka committed Sep 4, 2020
  6. bpo-41713: _signal doesn't use multi-phase init (GH-22087)

    Partially revert commit 71d1bd9:
    don't use multi-phase initialization (PEP 489) for the _signal
    extension module.
    vstinner committed Sep 4, 2020
  7. bpo-41700: Skip test if the locale is not supported (GH-22081)

    corona10 committed Sep 4, 2020

Commits on Sep 3, 2020

  1. [doc] Update documentation on logging optimization. (GH-22075)

    vsajip committed Sep 3, 2020
  2. Fix 'gather' rules in the python parser generator (GH-22021)

    Currently, empty sequences in gather rules make the conditional for
    gather rules fail as empty sequences evaluate as "False". We need to
    explicitly check for "None" (the failure condition) to avoid false
    negatives.
    pablogsal committed Sep 3, 2020
Older
You can’t perform that action at this time.