Skip to content
Permalink
Branch: master
Commits on Jul 2, 2020
  1. bpo-40967: Remove deprecated asyncio.Task.current_task() and asyncio.…

    remilapeyre committed Jul 2, 2020
    …Task.all_tasks() (GH-20874)
Commits on Jul 1, 2020
  1. bpo-1635741: Release Unicode interned strings at exit (GH-21269)

    vstinner committed Jul 1, 2020
    * PyUnicode_InternInPlace() now ensures that interned strings are
      ready.
    * Add _PyUnicode_ClearInterned().
    * Py_Finalize() now releases Unicode interned strings:
      call _PyUnicode_ClearInterned().
  2. bpo-40521: Cleanup finalize_interp_types() (GH-21265)

    vstinner committed Jul 1, 2020
    Remove the now unused is_main_interp parameter of
    finalize_interp_types().
  3. bpo-39385: Add an assertNoLogs context manager to unittest.TestCase (G…

    kitchoi and remilapeyre committed Jul 1, 2020
    …H-18067)
    
    Co-authored-by: Rémi Lapeyre <remi.lapeyre@henki.fr>
  4. Add lysnikolaou to CODEOWNERS for the new parser (GH-21252)

    lysnikolaou committed Jul 1, 2020
  5. Doc: Minor fix to init config C API documentation (GH-21198)

    tomerv and Tomer Vromen committed Jul 1, 2020
    Co-authored-by: Tomer Vromen <tomer.vromen@intel.com>
Commits on Jun 30, 2020
  1. bpo-41161 Add news entry for libmpdec-2.5.0 (GH-21243)

    skrah committed Jun 30, 2020
  2. bpo-39314: Closes parenthesis when autocompleting for functions that …

    remilapeyre committed Jun 30, 2020
    …take no arguments (GH-20562)
  3. Update FAQ release schedule and estimated users (GH-21180)

    E-Paine committed Jun 30, 2020
    Update FAQ to include:
    * The new yearly release schedule from PEP 602
    * Estimated users from "tens of thousands" to "millions"
  4. bpo-41100: fix _decimal for arm64 Mac OS (GH-21228)

    lawrence-danna-apple committed Jun 30, 2020
    Patch by Lawrence Danna.
  5. bpo-41142: Add support of non-ASCII paths for CAB files. (GH-21195)

    serhiy-storchaka committed Jun 30, 2020
    * The path to the CAB file can be non-ASCII.
    * Paths of added files can be non-ASCII.
  6. bpo-41123: Remove PyUnicode_AsUnicodeCopy (GH-21209)

    methane committed Jun 30, 2020
Commits on Jun 29, 2020
  1. bpo-23427: Add sys.orig_argv attribute (GH-20729)

    vstinner committed Jun 29, 2020
    Add sys.orig_argv attribute: the list of the original command line
    arguments passed to the Python executable.
    
    Rename also PyConfig._orig_argv to PyConfig.orig_argv and
    document it.
  2. bpo-37999: Simplify the conversion code for %c, %d, %x, etc. (GH-20437)

    serhiy-storchaka committed Jun 29, 2020
    Since PyLong_AsLong() no longer use __int__, explicit call
    of PyNumber_Index() before it is no longer needed.
  3. Fix typo in Object/listobject.c (GH-21079)

    jeongukjae committed Jun 29, 2020
  4. bpo-41004: Resolve hash collisions for IPv4Interface and IPv6Interface (

    rvteja92 committed Jun 29, 2020
    GH-21033)
    
    The __hash__() methods of classes IPv4Interface and IPv6Interface had issue
    of generating constant hash values of 32 and 128 respectively causing hash collisions.
    The fix uses the hash() function to generate hash values for the objects
    instead of XOR operation
  5. Update libmpdec license dates (GH-21216)

    skrah committed Jun 29, 2020
  6. bpo-41048: mimetypes should read the rule file using UTF-8, not the l…

    srinivasreddy committed Jun 29, 2020
    …ocale encoding (GH-20998)
  7. bpo-41123: Remove PyLong_FromUnicode() (GH-21204)

    methane committed Jun 29, 2020
  8. bpo-41123: Remove PyUnicode_GetMax() (GH-21192)

    methane committed Jun 29, 2020
Commits on Jun 28, 2020
  1. bpo-41138: Fix trace CLI for non-UTF-8 files. (GH-21177)

    serhiy-storchaka committed Jun 28, 2020
    Fix also a resource warning when store counts and module info.
  2. bpo-41144: Fix IDLE open module error (#21182)

    E-Paine and terryjreedy committed Jun 28, 2020
    Could not open os.path.
    
    Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
  3. bpo-38870: Extend subject of ast.unparse warnings (GH-21053)

    isidentical committed Jun 28, 2020
    - Mention that some compiler optimizations might not roundtrip
    exactly (such as constant tuples and frozensets).
    
    - Add a warning about it might raise RecursionError on very
    complex expressions due to recursive unparsing aspect of ast.unparse
  4. bpo-39151: Simplify DFS in the assembler (GH-17733)

    pablogsal committed Jun 28, 2020
Older
You can’t perform that action at this time.