Skip to content
Permalink
master

Commits on Jan 25, 2021

  1. bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332)

    * Rename _Py_module_names to _Py_stdlib_module_names.
    * Rename Python/module_names.h to Python/stdlib_module_names.h.
    vstinner committed Jan 25, 2021
  2. bpo-42383: pdb: do not fail to restart the target if the current dire…

    …ctory changed (#23412)
    
    This commit only adds tests and a news entry. The actual bug was fixed in the earlier commit.
    hexagonrecursion committed Jan 25, 2021
  3. bpo-42869: Avoid an HTTP redirection. (GH-24174)

    JulienPalard committed Jan 25, 2021
  4. bpo-42955: Fix sys.module_names doc (GH-24329)

    Replace versionchanged markup with versionadded.
    vstinner committed Jan 25, 2021
  5. bpo-42955: Add sys.modules_names (GH-24238)

    Add sys.module_names, containing the list of the standard library
    module names.
    vstinner committed Jan 25, 2021
  6. bpo-43013: Fix old tkinter module names in idlelib (GH-24326)

    Lowercase 'tkColorChooser', 'tkFileDialog', 'tkSimpleDialog', and
    'tkMessageBox' and remove 'tk'.  Just lowercase 'tkFont' as 'font'
    is already used.  Adjust import.
    terryjreedy committed Jan 25, 2021
  7. bpo-27772: Make preceding width with 0 valid in string format. (GH-11270

    )
    
    Previously it was an error with confusing error message.
    serhiy-storchaka committed Jan 25, 2021

Commits on Jan 24, 2021

  1. bpo-43013: Update idlelib code to 3.x (GH-24315)

    Remove 9 remaining '(object)' occurrences in class headers in idlelib
    and 25 '()' occurrences in idlelib.idle_test class headers.
    terryjreedy committed Jan 24, 2021
  2. bpo-43014: Improve performance of tokenize.tokenize by 20-30%

    asottile committed Jan 24, 2021

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

Older