From 9ce6c01e38a2fc7a5ce832f1f8c8d9097132556d Mon Sep 17 00:00:00 2001 From: Parth Doshi Date: Mon, 1 Jan 2024 00:08:05 -0800 Subject: [PATCH] # gh-111700: Fix syntax highlighting for C code in the "What's New In Python 3.12" documentation (#113609) Fix PEP 684 syntax highlighting in what's new Python 3.12 --- Doc/whatsnew/3.12.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index 8551b35438e..9a2ccf7ebc6 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -343,7 +343,9 @@ cores. This is currently only available through the C-API, though a Python API is :pep:`anticipated for 3.13 <554>`. Use the new :c:func:`Py_NewInterpreterFromConfig` function to -create an interpreter with its own GIL:: +create an interpreter with its own GIL: + +.. code-block:: c PyInterpreterConfig config = { .check_multi_interp_extensions = 1,