Home | History | Annotate | Download | only in Modules

Lines Matching refs:VERSION

27       /Efi/StdLib/lib/python27.10               The version dependent Python modules.

28 /Efi/StdLib/lib/python.27 The version independent Python modules.
48 /* VERSION must be at least two characters long. */
49 #ifndef VERSION
50 #define VERSION SIFY(PY_MAJOR_VERSION) SIFY(PY_MINOR_VERSION)
71 #define LIBPYTHON "lib/python" VERSION "." SIFY(PY_MICRO_VERSION)
356 The prefix landmark will always be lib/python.VERSION/os.py and the
357 exec_prefix will always be lib/python.VERSION/dynaload, where VERSION
358 is Python's version number as defined at the beginning of this file.
379 expected by other code, by stripping the "lib/python$VERSION/..." stuff
477 bufsz = strlen(zip_path); /* Replace "00" with version */
478 zip_path[bufsz - 6] = VERSION[0];
479 zip_path[bufsz - 5] = VERSION[1];