From 820ebc0e8f0e371c36555e1fc59d8be5e0b054bb Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Sat, 27 Jul 2024 21:49:39 +0200 Subject: [PATCH] Apply Petr's suggestion --- peps/pep-0007.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/peps/pep-0007.rst b/peps/pep-0007.rst index 7db059debc68..fd7b48218b87 100644 --- a/peps/pep-0007.rst +++ b/peps/pep-0007.rst @@ -34,6 +34,10 @@ C dialect * The public C API should be compatible with C99 and with C++03. + The existing API does use a few C11 features which are + commonly available as compiler extensions to C99. + New API should not use these features. + * Python 3.6 to 3.10 use C89 with several select C99 features: - Standard integer types in ```` and ````. We