Skip to content

Commit dc0752f

Browse files
Third times the charm
1 parent b9ae70d commit dc0752f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef Py_INTERNAL_UNICODEDATA_H
2-
#define Py_INTERNAL_UNICODEDATA_H
1+
#ifndef Py_INTERNAL_UNICODECTYPE_H
2+
#define Py_INTERNAL_UNICODECTYPE_H
33
#ifdef __cplusplus
44
extern "C" {
55
#endif
@@ -14,4 +14,4 @@ PyAPI_FUNC(int) _PyUnicode_IsXidContinue(Py_UCS4 ch);
1414
#ifdef __cplusplus
1515
}
1616
#endif
17-
#endif /* !Py_INTERNAL_UNICODEDATA_H */
17+
#endif /* !Py_INTERNAL_UNICODECTYPE_H */

Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1433,9 +1433,9 @@ PYTHON_HEADERS= \
14331433
$(srcdir)/Include/internal/pycore_typeobject.h \
14341434
$(srcdir)/Include/internal/pycore_typevarobject.h \
14351435
$(srcdir)/Include/internal/pycore_ucnhash.h \
1436-
$(srcdir)/Include/internal/pycore_unicodedata.h \
14371436
$(srcdir)/Include/internal/pycore_unicodeobject.h \
14381437
$(srcdir)/Include/internal/pycore_unicodeobject_generated.h \
1438+
$(srcdir)/Include/internal/pycore_unicodectype.h \
14391439
$(srcdir)/Include/internal/pycore_unionobject.h \
14401440
$(srcdir)/Include/internal/pycore_uniqueid.h \
14411441
$(srcdir)/Include/internal/pycore_uop.h \

Modules/unicodedata.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "Python.h"
2020
#include "pycore_object.h" // _PyObject_VisitType()
2121
#include "pycore_ucnhash.h" // _PyUnicode_Name_CAPI
22-
#include "pycore_unicodedata.h" // _PyUnicode_IsXidStart, _PyUnicode_IsXidContinue
22+
#include "pycore_unicodectype.h" // _PyUnicode_IsXidStart, _PyUnicode_IsXidContinue
2323

2424
#include <stdbool.h>
2525
#include <stddef.h> // offsetof()

Objects/unicodectype.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
#include "Python.h"
12-
#include "pycore_unicodedata.h" // export _PyUnicode_IsXidStart(), _PyUnicode_IsXidContinue()
12+
#include "pycore_unicodectype.h" // export _PyUnicode_IsXidStart(), _PyUnicode_IsXidContinue()
1313

1414
#define ALPHA_MASK 0x01
1515
#define DECIMAL_MASK 0x02

PCbuild/pythoncore.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,9 +328,9 @@
328328
<ClInclude Include="..\Include\internal\pycore_typevarobject.h" />
329329
<ClInclude Include="..\Include\internal\pycore_ucnhash.h" />
330330
<ClInclude Include="..\Include\internal\pycore_unionobject.h" />
331-
<ClInclude Include="..\Include\internal\pycore_unicodedata.h" />
332331
<ClInclude Include="..\Include\internal\pycore_unicodeobject.h" />
333332
<ClInclude Include="..\Include\internal\pycore_unicodeobject_generated.h" />
333+
<ClInclude Include="..\Include\internal\pycore_unicodectype.h" />
334334
<ClInclude Include="..\Include\internal\pycore_uniqueid.h" />
335335
<ClInclude Include="..\Include\internal\pycore_warnings.h" />
336336
<ClInclude Include="..\Include\internal\pycore_weakref.h" />

0 commit comments

Comments
 (0)