[issue42784] issues with object.h includes

2022-01-31 Thread STINNER Victor
STINNER Victor added the comment: There is an on-going work to move more and more header files into Include/cpython/ subdirectory, or even to the Include/internal/ directory. Examples: * bpo-35134: Move cellobject.h, classobject.h, context.h, funcobject.h, genobject.h and longintrepr.h to I

[issue42784] issues with object.h includes

2022-01-31 Thread Irit Katriel
Irit Katriel added the comment: Another workaround is for you to rename object.h in your project. -- nosy: +iritkatriel resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker

[issue42784] issues with object.h includes

2020-12-29 Thread Big Boss
New submission from Big Boss : using #include in header files is known to cause conflict with other projects using similar header file. Best workaround should be renaming to . Probably better to do the same thing to other header files as well. Or wrap it around with a folder. Like ---