[3.14] gh-135755: Move SPECIAL_ constants to a private header (GH-135922) (GH-135926)

Macros without a `Py`/`_Py` prefix should not be defined in public headers.
(cherry picked from commit 1b1ae82fab)
This commit is contained in:
Petr Viktorin 2025-06-25 13:36:46 +02:00 committed by GitHub
parent 93a31bedd9
commit a345fed896
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 9 deletions

View file

@ -5,7 +5,7 @@
#include "Python.h"
#include "compile.h"
#include "opcode.h"
#include "pycore_ceval.h"
#include "pycore_ceval.h" // SPECIAL_MAX
#include "pycore_code.h"
#include "pycore_compile.h"
#include "pycore_intrinsics.h"