From 47647390711020b5502be6bdcf590f1994ca3125 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 24 Sep 2026 10:41:21 +0200 Subject: [PATCH] Add Pillow to users --- docs/users.rst | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/users.rst b/docs/users.rst index abf4307..c1bf314 100644 --- a/docs/users.rst +++ b/docs/users.rst @@ -49,18 +49,15 @@ Examples of projects using pythoncapi_compat.h (`commit `__, `pythoncapi-compat Meson subproject `__) +* `Pillow `_ + (`src/thirdparty/pythoncapi_compat.h `_) + Projects not using pythoncapi_compat.h ====================================== Projects not using ``pythoncapi_compat.h``: -* numpy has its own compatibility layer, ``npy_pycompat.h`` and - ``npy_3kcompat.h`` header files. It supports more C compilers than - pythoncapi_compat.h: it supports ``__STRICT_ANSI__`` (ISO C90) for example. - Rejected `PR 18713: MAINT: Use pythoncapi_compat.h in npy_3kcompat.h - `_ (when it was rejected, numpy - still had code for compatibility with Python 2.7). * Cython doesn't use pythoncapi_compat.h: `see Cython issue #3934 `_.