Skip to content

Commit da7f4e4

Browse files
gh-141488: Add Py_ prefix to Include/datetime.h macros (#141493)
1 parent b101e9d commit da7f4e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Include/datetime.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/* datetime.h
22
*/
33
#ifndef Py_LIMITED_API
4-
#ifndef DATETIME_H
5-
#define DATETIME_H
4+
#ifndef Py_DATETIME_H
5+
#define Py_DATETIME_H
66
#ifdef __cplusplus
77
extern "C" {
88
#endif
@@ -263,5 +263,5 @@ static PyDateTime_CAPI *PyDateTimeAPI = NULL;
263263
#ifdef __cplusplus
264264
}
265265
#endif
266-
#endif
266+
#endif /* !Py_DATETIME_H */
267267
#endif /* !Py_LIMITED_API */

0 commit comments

Comments
 (0)