// Resource script for Python core DLL. // Currently only holds version information. // #include "winver.h" #define PYTHON_COMPANY "Python Software Foundation" #define PYTHON_COPYRIGHT "Copyright \xA9 2001-2016 Python Software Foundation. Copyright \xA9 2000 BeOpen.com. Copyright \xA9 1995-2001 CNRI. Copyright \xA9 1991-1995 SMC." #define MS_WINDOWS #include "modsupport.h" #include "patchlevel.h" #include #ifdef _DEBUG # define PYTHON_DEBUG_EXT "_d" #else # define PYTHON_DEBUG_EXT #endif /* e.g., 3.3.0a1 * PY_VERSION comes from patchlevel.h */ #define PYTHON_VERSION PY_VERSION "\0" /* 64-bit version number as comma-separated list of 4 16-bit ints */ #if PY_MICRO_VERSION > 64 # error "PY_MICRO_VERSION > 64" #endif #if PY_RELEASE_LEVEL > 99 # error "PY_RELEASE_LEVEL > 99" #endif #if PY_RELEASE_SERIAL > 9 # error "PY_RELEASE_SERIAL > 9" #endif #define PYVERSION64 PY_MAJOR_VERSION, PY_MINOR_VERSION, FIELD3, PYTHON_API_VERSION on> https://github.com/python/cpython.git
summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-11-02 15:07:35 (GMT)
committerJason R. Coombs <jaraco@jaraco.com>2013-11-02 15:07:35 (GMT)
commitbd26d86d7458897b681b3a5d614cfd6e42eb70cb (patch)
tree988202b8980d9cff1eb29b6f3ea8fb515217d16a /Lib
parent93912b9e542f90c2700a0560e127b6de5c36dcf0 (diff)
downloadcpython-bd26d86d7458897b681b3a5d614cfd6e42eb70cb.zip
cpython-bd26d86d7458897b681b3a5d614cfd6e42eb70cb.tar.gz
cpython-bd26d86d7458897b681b3a5d614cfd6e42eb70cb.tar.bz2
Issue #19286: [distutils] Only match files in build_py.find_data_files.
Diffstat (limited to 'Lib')