X Tutup
The Wayback Machine - https://web.archive.org/web/20201019111124/https://github.com/python/cpython/commits/master
Skip to content
Permalink
master

Commits on Oct 19, 2020

  1. bpo-40484: Document compiler flags under AST module (GH-19885)

    Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
    Co-authored-by: Shantanu <hauntsaninja@users.noreply.github.com>
    3 people committed Oct 19, 2020

Commits on Oct 18, 2020

  1. bpo-40492: Fix --outfile with relative path when the program changes …

    …it working dir (GH-19910)
    asottile committed Oct 18, 2020
  2. 3.9 whatsnew: fix bpo issue for AST change (GH-22742)

    hauntsaninja committed Oct 18, 2020
  3. bpo-20184: Convert termios to Argument Clinic. (GH-22693)

    serhiy-storchaka committed Oct 18, 2020
  4. bpo-38252: Use 8-byte step to detect ASCII sequence in 64bit Windows …

    …build (GH-16334)
    animalize committed Oct 18, 2020

Commits on Oct 17, 2020

  1. bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error mes…

    …sage (GH-19940)
    tekknolagi committed Oct 17, 2020
  2. [doc] Add mentions of PEP 613 (TypeAlias) to docs (GH-22733)

    andresdelfino committed Oct 17, 2020

Commits on Oct 16, 2020

  1. bpo-40341: Remove some "discouraged solutions" in Doc/faq/programming…

    ….rst (GH-22726)
    ZackerySpytz committed Oct 16, 2020
  2. closes bpo-42030: Remove legacy AIX dynload support (GH-22717)

    Since c19c5a6, AIX builds have defaulted to using dynload_shlib over
    dynload_aix when dlopen is available. This function has been available
    since AIX 4.3, which went out of support in 2003, the same year the
    previously referenced commit was made. It has been nearly 20 years
    since a version of AIX has been supported which has not used
    dynload_shlib so there's no reason to keep this legacy code around.
    kadler committed Oct 16, 2020
  3. bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)

    * Move the codecs' (un)register operation to testcases.
    * Remove _codecs._forget_codec() and _PyCodec_Forget()
    shihai1991 committed Oct 16, 2020

Commits on Oct 15, 2020

  1. bpo-1635741: Add a global module state to unicodedata (GH-22712)

    Prepare unicodedata to add a state per module: start with a global
    "module" state, pass it to subfunctions which access &UCD_Type. This
    change also prepares the conversion of the UCD_Type static type to a
    heap type.
    vstinner committed Oct 15, 2020
  2. Minor clarification (GH-22708)

    rhettinger committed Oct 15, 2020
  3. bpo-41894: Fix UnicodeDecodeError while loading native module (GH-22466)

    When running in a non-UTF-8 locale, if an error occurs while importing a
    native Python module (say because a dependent share library is missing),
    the error message string returned may contain non-ASCII code points
    causing a UnicodeDecodeError.
    
    PyUnicode_DecodeFSDefault is used for buffers which may contain
    filesystem  paths. For consistency with os.strerror(),
    PyUnicode_DecodeLocale is used for buffers which contain system error
    messages. While the shortname parameter is always encoded in ASCII
    according to PEP 489, it is left decoded using PyUnicode_FromString to
    minimize the changes and since it should not affect the decoding (albeit
    _potentially_ slower).
    
    In dynload_hpux, since the error buffer contains a message generated
    from a static ASCII string and the module filesystem path,
    PyUnicode_DecodeFSDefault is used instead of PyUnicode_DecodeLocale as
    is used elsewhere.
    
    * bpo-41894: Fix bugs in dynload error msg handling
    
    For both dynload_aix and dynload_hpux, properly handle the possibility
    that decoding strings may return NULL and when such an error happens,
    properly decrement any previously decoded strings and return early.
    
    In addition, in dynload_aix, ensure that we pass the decoded string
    *object* pathname_ob to PyErr_SetImportError instead of the original
    pathname buffer.
    
    Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
    kadler and serhiy-storchaka committed Oct 15, 2020
  4. bpo-41984: GC track all user classes (GH-22701)

    brandtbucher committed Oct 15, 2020

Commits on Oct 14, 2020

  1. Update timings for the final release (GH-22697)

    rhettinger committed Oct 14, 2020
  2. bpo-39337: encodings.normalize_encoding() now ignores non-ASCII chara…

    …cters (GH-22219)
    shihai1991 committed Oct 14, 2020
  3. bpo-41876: Overload __repr__ for tkinter Font objects (GH-22450)

    p4m-dev committed Oct 14, 2020
  4. closes bpo-42029: Remove dynload_dl (GH-22687)

    All references to this dynamic loading method were removed in b9949db,
    when support for this method was dropped, but the implementation code
    was not dropped (seemingly in oversight).
    kadler committed Oct 14, 2020

Commits on Oct 13, 2020

  1. Improve recipe readability (GH-22685)

    rhettinger committed Oct 13, 2020
  2. bpo-40422: Move _Py_closerange to fileutils.c (GH-22680)

    This API is relatively lightweight and organizationally, given that it's
    used by multiple modules, it makes sense to move it to fileutils.
    
    Requires making sure that _posixsubprocess is compiled with the appropriate
    Py_BUIILD_CORE_BUILTIN macro.
    kevans91 committed Oct 13, 2020
  3. bpo-41756: Export PyGen_Send and wrap it in if-defs (#22677)

    vladima committed Oct 13, 2020
  4. bpo-41995: Fix null ptr deref in tracemalloc_copy_trace() (GH-22660)

    Fix a null pointer dereference in tracemalloc_copy_trace()
    of _tracemalloc.
    Yunlongs committed Oct 13, 2020

Commits on Oct 12, 2020

  1. bpo-40422: Move _Py_*_SUPPRESS_IPH bits into _Py_closerange (GH-22672)

    This suppression is no longer needed in os_closerange_impl, as it just
    invokes the internal _Py_closerange implementation. On the other hand,
    consumers of _Py_closerange may not have any other reason to suppress
    invalid parameter issues, so narrow the scope to here.
    kevans91 committed Oct 12, 2020
  2. Fix typo in "Context manager types" section in typing.rst (GH-22676)

    Fix typo in the "Context manager types" section in `typing.rst`.
    
    Automerge-Triggered-By: @gvanrossum
    gousaiyang committed Oct 12, 2020
  3. bpo-42015: Reorder dereferencing calls in meth_dealloc, to make sure …

    …m_self is kept alive long enough (GH-22670)
    YannickJadoul committed Oct 12, 2020
  4. Delete PyGen_Send (#22663)

    vladima committed Oct 12, 2020
  5. [doc] Fix typo in the graphlib docs (GH-22661)

    Automerge-Triggered-By: @pablogsal
    linchiwei123 committed Oct 12, 2020
Older
You can’t perform that action at this time.
X Tutup