Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/jit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ jobs:
- name: JIT without optimizations (Debug)
configure_flags: --enable-experimental-jit --with-pydebug
test_env: "PYTHON_UOPS_OPTIMIZE=0"
- name: JIT with stress testing (Debug)
configure_flags: --enable-experimental-jit --with-pydebug
test_env: "PYTHON_JIT_STRESS=1"
- name: JIT with tail calling interpreter
configure_flags: --enable-experimental-jit --with-tail-call-interp --with-pydebug
use_clang: true
Expand Down
8 changes: 6 additions & 2 deletions Doc/c-api/bytes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -384,14 +384,18 @@ Getters

Get the writer size.

The function does not invalidate pointers returned by
:c:func:`PyBytesWriter_GetData`.

The function cannot fail.

.. c:function:: void* PyBytesWriter_GetData(PyBytesWriter *writer)

Get the writer data: start of the internal buffer.

The pointer is valid until :c:func:`PyBytesWriter_Finish` or
:c:func:`PyBytesWriter_Discard` is called on *writer*.
The pointer remains valid until a :c:type:`PyBytesWriter` function other
than :c:func:`PyBytesWriter_GetData` or :c:func:`PyBytesWriter_GetSize` is
called on *writer*.

The function cannot fail.

Expand Down
2 changes: 1 addition & 1 deletion Doc/library/logging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ Formatter Objects
:param defaults: A dictionary with default values to use in custom fields.
For example,
``logging.Formatter('%(ip)s %(message)s', defaults={"ip": None})``
:type defaults: dict[str, Any]
:type defaults: dict[str, typing.Any]

.. versionchanged:: 3.2
Added the *style* parameter.
Expand Down
6 changes: 6 additions & 0 deletions Doc/library/tkinter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2979,6 +2979,8 @@ Base and mixin classes
Same as :meth:`Misc.pack_content`.
:meth:`content` is an alias of :meth:`!pack_content`.

.. versionadded:: 3.15


.. class:: Place()

Expand Down Expand Up @@ -3073,6 +3075,8 @@ Base and mixin classes
Same as :meth:`Misc.place_content`.
:meth:`content` is an alias of :meth:`!place_content`.

.. versionadded:: 3.15


.. class:: Grid()

Expand Down Expand Up @@ -3221,6 +3225,8 @@ Base and mixin classes
Same as :meth:`Misc.grid_content`.
:meth:`content` is an alias of :meth:`!grid_content`.

.. versionadded:: 3.15


.. class:: XView()

Expand Down
Loading