Skip to content
Permalink
main
Loading

Commits on Nov 8, 2021

  1. Add third-party Windows build definitions (GH-29476)

    These definition files are for OpenSSL, libffi and Tcl/Tk, which we build and sign ourselves.
    zooba committed Nov 8, 2021
  2. bpo-45723: Add macro for disabling/enabling CC warnings (GH-29466)

    Co-authored-by: Christian Heimes <christian@python.org>
    erlend-aasland and tiran committed Nov 8, 2021
  3. bpo-40170: Update What's New in Python 3.9 (GH-29470)

    The PyType_HasFeature() change has been reverted: the static inline
    function access directly the PyTypeObject.tp_flags member.
    vstinner committed Nov 8, 2021
  4. bpo-45723: Add helper macros and more caching to configure.ac (GH-29429)

    Almost all checks are now cached by AC_CACHE_CHECK().
    
    Common patterns are replaced by helper macros.
    
    Variable names now use naming scheme ``ac_cv_func_$funcname``,
    ``ac_cv_lib_$library_$funcname``, or ``ac_cv_header_$headername_h``.
    
    ``SYS_SELECT_WITH_SYS_TIME`` is no longer used.
    
    ``uuid_create`` and ``uuid_enc_be`` are provided by libc on BSD. It is
    safe to use ``AC_CHECK_FUNCS`` here.
    
    Caching speeds up ./configure -C from ~ 4s to 2.6s on my system.
    
    Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
    tiran and erlend-aasland committed Nov 8, 2021
  5. bpo-45741: docs: fix plural (GH-29461)

    "entry points provides" -> "entry points provide"
    
    Automerge-Triggered-By: GH:ericvsmith
    rffontenelle committed Nov 8, 2021

Commits on Nov 7, 2021

  1. General cleanup of test_pydoc (GH-29459)

    - Uniform usage of `test.support.requires_docstrings` instead of a
      local check for `-OO`.
    - Added `requires_docstrings` to a couple more methods that need it.
    - Replaced a few instances of `test.test_pydoc` with `__name__` to allow
      for different methods of running just this test file.
    - Rewrote `test_server` to run faster and better test the server.
    - Removed unused import.
    - Removed unused locals.
    - Minor whitespace cleanups.
    zware committed Nov 7, 2021

Commits on Nov 5, 2021

  1. Post 3.11.0a2

    pablogsal committed Nov 5, 2021
  2. Merge tag 'v3.11.0a2'

    Python 3.11.0a2
    pablogsal committed Nov 5, 2021
  3. Python 3.11.0a2

    pablogsal committed Nov 5, 2021
  4. bpo-45678: Add more singledispatchmethod tests (GH-29412)

    In order to fix a bug in the 3.9 branch in #29394, more tests were added to
    ``test_functools.py`` to ensure that ``singledispatchmethod`` still correctly
    wrapped a target method, even if the target method had already been wrapped by
     multiple other decorators. This PR brings the new tests into the 3.11 and 3.10
    branches as well.
    AlexWaygood committed Nov 5, 2021
Older