bpylist icon indicating copy to clipboard operation
bpylist copied to clipboard

unable to find "pytime.h"

Open evandrix opened this issue 6 years ago • 1 comments

clang -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/usr/include -I/usr/local/include -I/usr/local/opt/libunwind-headers/include -I/usr/local/include -I/usr/local/opt/openssl/include -I/usr/local/opt/sqlite/include -I/usr/local/Cellar/python@2/2.7.16/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c src/bplist.c -o build/temp.macosx-10.14-x86_64-2.7/src/bplist.o
src/bplist.c:2:10: fatal error: 'pytime.h' file not found
#include <pytime.h>
         ^~~~~~~~~~
1 error generated.
error: command 'clang' failed with exit status 1

evandrix avatar Mar 27 '19 18:03 evandrix

https://docs.python.org/3/whatsnew/3.10.html

The non-limited API files odictobject.h, parser_interface.h, picklebufobject.h, pyarena.h, pyctype.h, pydebug.h, pyfpe.h, and pytime.h have been moved to the Include/cpython directory. These files must not be included directly, as they are already included in Python.h: Include Files. If they have been included directly, consider including Python.h instead. (Contributed by Nicholas Sim in bpo-35134)

neomafo88 avatar Feb 08 '22 18:02 neomafo88