Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 427ce80

Browse files
committed
Sort the headers in PYTHON_HEADERS alphabetically. Add
structmember.h, which was missing (and caused me a snide comment by Tim when he fixed something I missed because of the missed dependency :-).
1 parent b64bec3 commit 427ce80

1 file changed

Lines changed: 32 additions & 31 deletions

File tree

Makefile.pre.in

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -428,47 +428,48 @@ Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
428428

429429
PYTHON_HEADERS= \
430430
Include/Python.h \
431-
pyconfig.h \
432-
Include/patchlevel.h \
433-
Include/pyport.h \
434-
Include/pymem.h \
435-
Include/object.h \
436-
Include/objimpl.h \
431+
Include/abstract.h \
432+
Include/bufferobject.h \
433+
Include/ceval.h \
434+
Include/classobject.h \
435+
Include/cobject.h \
436+
Include/codecs.h \
437437
Include/compile.h \
438-
Include/symtable.h \
439-
Include/pydebug.h \
440-
Include/unicodeobject.h \
441-
Include/intobject.h \
442-
Include/longobject.h \
443-
Include/floatobject.h \
444438
Include/complexobject.h \
445-
Include/rangeobject.h \
446-
Include/stringobject.h \
447-
Include/bufferobject.h \
448-
Include/tupleobject.h \
449-
Include/listobject.h \
450-
Include/iterobject.h \
451439
Include/descrobject.h \
452440
Include/dictobject.h \
441+
Include/fileobject.h \
442+
Include/floatobject.h \
443+
Include/funcobject.h \
444+
Include/import.h \
445+
Include/intobject.h \
446+
Include/intrcheck.h \
447+
Include/iterobject.h \
448+
Include/listobject.h \
449+
Include/longobject.h \
453450
Include/methodobject.h \
451+
Include/modsupport.h \
454452
Include/moduleobject.h \
455-
Include/funcobject.h \
456-
Include/classobject.h \
457-
Include/fileobject.h \
458-
Include/cobject.h \
459-
Include/traceback.h \
460-
Include/sliceobject.h \
461-
Include/codecs.h \
453+
Include/object.h \
454+
Include/objimpl.h \
455+
Include/patchlevel.h \
456+
Include/pydebug.h \
462457
Include/pyerrors.h \
458+
Include/pyfpe.h \
459+
Include/pymem.h \
460+
Include/pyport.h \
463461
Include/pystate.h \
464-
Include/modsupport.h \
465-
Include/ceval.h \
466462
Include/pythonrun.h \
463+
Include/rangeobject.h \
464+
Include/sliceobject.h \
465+
Include/stringobject.h \
466+
Include/structmember.h \
467+
Include/symtable.h \
467468
Include/sysmodule.h \
468-
Include/intrcheck.h \
469-
Include/import.h \
470-
Include/abstract.h \
471-
Include/pyfpe.h
469+
Include/traceback.h \
470+
Include/tupleobject.h \
471+
Include/unicodeobject.h \
472+
pyconfig.h
472473

473474
$(LIBRARY_OBJS) $(MODOBJS) Modules/$(MAINOBJ): $(PYTHON_HEADERS)
474475

0 commit comments

Comments
 (0)