Skip to content
Permalink
master

Commits on Jan 23, 2021

Commits on Jan 22, 2021

  1. bpo-42996: Update a reference to PKCS #5 in hashlib docs to version 2…

    ….1 (GH-24289)
    
    RFC 8018 superseded RFC 8018.
    
    Automerge-Triggered-By: GH:tiran
    illia-v committed Jan 22, 2021
  2. bpo-40304: Correct type(name, bases, dict) doc (GH-19553)

    Co-authored-by: Éric Araujo <merwok@netwok.org>
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
    Co-authored-by: Tal Einat <532281+taleinat@users.noreply.github.com>
    4 people committed Jan 22, 2021
  3. bpo-42384: pdb: correctly populate sys.path[0] (GH-23338)

    Automerge-Triggered-By: GH:gvanrossum
    hexagonrecursion committed Jan 22, 2021
  4. bpo-31904: setup.py: fix cross-compilation on VxWorks (GH-24191)

    Add library search path by wr-cc in add_cross_compiling_paths().
    pxinwr committed Jan 22, 2021

Commits on Jan 21, 2021

  1. bpo-33289: Return RGB triplet of ints instead of floats from tkinter.…

    …colorchooser (GH-6578)
    csabella committed Jan 21, 2021
  2. Fix typo in what's new. bidst_wheel -> bdist_wheel (GH-24234)

    bidst_wheel -> bdist_wheel
    
    Automerge-Triggered-By: GH:Mariatta
    ravcio committed Jan 21, 2021
  3. bpo-42392: Mention loop removal in whatsnew for 3.10 (GH-24256)

    @vstinner [noticed on python-dev](https://mail.python.org/archives/list/python-dev@python.org/thread/O3T7SK3BGMFWMLCQXDODZJSBL42AUWTR/) that there is no what's new or porting entry for removal of asyncio ``loop`` parameter. 
    
    This patch adds a basic guide.
    
    Co-Authored-By: Kyle Stanley <aeros167@gmail.com>
    Fidget-Spinner and aeros committed Jan 21, 2021

Commits on Jan 20, 2021

  1. bpo-40176: Improve error messages for unclosed string literals (GH-19346

    )
    
    Automerge-Triggered-By: GH:isidentical
    isidentical committed Jan 20, 2021
  2. bpo-42864: Simplify the tokenizer exceptions after generic SyntaxError (

    GH-24273)
    
    Automerge-Triggered-By: GH:pablogsal
    pablogsal committed Jan 20, 2021
  3. bpo-42856: Add --with-wheel-pkg-dir=PATH configure option (GH-24210)

    Add --with-wheel-pkg-dir=PATH option to the ./configure script. If
    specified, the ensurepip module looks for setuptools and pip wheel
    packages in this directory: if both are present, these wheel packages
    are used instead of ensurepip bundled wheel packages.
    
    Some Linux distribution packaging policies recommend against bundling
    dependencies. For example, Fedora installs wheel packages in the
    /usr/share/python-wheels/ directory and don't install the
    ensurepip._bundled package.
    
    ensurepip: Remove unused runpy import.
    vstinner committed Jan 20, 2021
  4. bpo-42323: Fix math.nextafter() for NaN on AIX (GH-24265)

    vstinner committed Jan 20, 2021
  5. Fix typos in unittest documentation (GH-24194)

    * addCleanupClass  -> addClassCleanup
    * doCleanupsClass -> doClassCleanups
    Conchylicultor committed Jan 20, 2021
  6. bpo-42864: Fix compiler warning in the tokenizer with the new paren s…

    …tack for column numbers (GH-24266)
    pablogsal committed Jan 20, 2021
  7. bpo-41798: Allocate unicodedata CAPI on the heap (GH-24128)

    erlend-aasland committed Jan 20, 2021
  8. Doc: os.path.abspath and Path.resolve are also different (GH-23276)

    xuhdev committed Jan 20, 2021
  9. bpo-42005: profile and cProfile catch BrokenPipeError (GH-22643)

    zmwangx committed Jan 20, 2021

Commits on Jan 19, 2021

  1. bpo-42955: Add Python/module_names.h (GH-24258)

    Add a private list of all stdlib modules: _Py_module_names.
    
    * Add Tools/scripts/generate_module_names.py script.
    * Makefile: Add "make regen-module-names" command.
    * setup.py: Add --list-module-names option.
    * GitHub Action and Travis CI also runs "make regen-module-names",
      not ony "make regen-all", to ensure that the module names remains
      up to date.
    vstinner committed Jan 19, 2021
  2. Add a clarification for the object-domain allocators regarding pointe…

    …r validity (GH-24253)
    pablogsal committed Jan 19, 2021
  3. bpo-41818: Close file descriptors in test_openpty (#GH-24119)

    When stdin is a TTY, the test added in commit c13d899
    is expected to fail. However, when it failed, it did not close
    its file descriptors. This is flagged by the refleak tests (but
    only when stdin is a TTY, which doesn't seem to be the case on CI).
    encukou committed Jan 19, 2021

Commits on Jan 18, 2021

  1. closes bpo-42938: Replace snprintf with Python unicode formatting in …

    …ctypes param reprs. (24239)
    benjaminp committed Jan 18, 2021
  2. bpo-36143: make regen-all now also runs regen-keyword (GH-24245)

    vstinner committed Jan 18, 2021
  3. bpo-42923: Dump extension modules on fatal error (GH-24207)

    The Py_FatalError() function and the faulthandler module now dump the
    list of extension modules on a fatal error.
    
    Add _Py_DumpExtensionModules() and _PyModule_IsExtension() internal
    functions.
    vstinner committed Jan 18, 2021
  4. bpo-42944 Fix Random.sample when counts is not None (GH-24235)

    jonanifranco committed Jan 18, 2021
  5. bpo-42923: Py_FatalError() avoids fprintf() (GH-24242)

    * Replace buffered fprintf() with unbuffered _Py_write_noraise()
      in Py_FatalError().
    * _Py_DumpHexadecimal() now accepts uintptr_t.
    vstinner committed Jan 18, 2021
  6. bpo-42923: Add Py_FatalError() test in test_capi (GH-24240)

    Move faulthandler._fatal_error() to _testcapi.fatal_error().
    vstinner committed Jan 18, 2021
Older