[Python-checkins] gh-91731: Fix typo in pymacro.h (#92618)

pablogsal webhook-mailer at python.org
Tue May 10 08:47:39 EDT 2022


https://github.com/python/cpython/commit/4e6da502f42e3cbdffbe850833d2b04996232f0d
commit: 4e6da502f42e3cbdffbe850833d2b04996232f0d
branch: main
author: Pablo Galindo Salgado <Pablogsal at gmail.com>
committer: pablogsal <Pablogsal at gmail.com>
date: 2022-05-10T13:47:22+01:00
summary:

gh-91731: Fix typo in pymacro.h (#92618)

* Fix typo in pymacro.h

* Update Include/pymacro.h

Co-authored-by: Victor Stinner <vstinner at python.org>

Co-authored-by: Victor Stinner <vstinner at python.org>

files:
M Include/pymacro.h

diff --git a/Include/pymacro.h b/Include/pymacro.h
index 5037bbd013801..b959eeb3f58b3 100644
--- a/Include/pymacro.h
+++ b/Include/pymacro.h
@@ -10,7 +10,7 @@
 #  define static_assert _Static_assert
 #endif
 
-// static_assert is defined in GLIB from version 2.16. Before it requires
+// static_assert is defined in glibc from version 2.16. Before it requires
 // compiler support (gcc >= 4.6) and is called _Static_assert.
 #if (defined(__GLIBC__) \
      && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 16)) \



More information about the Python-checkins mailing list