Home | History | Annotate | Download | only in Efi

Lines Matching refs:VERSION

21       /Efi/StdLib/lib/python.VERSION            The platform independent Python modules.

22 /Efi/StdLib/lib/python.VERSION/dynalib Dynamically loadable Python extension modules.
41 /* VERSION must be at least two characters long. */
42 #ifndef VERSION
43 #define VERSION "27"
64 #define LIBPYTHON "lib/python." VERSION
159 /* Check for the compiled version of prefix. */
425 The prefix landmark will always be lib/python.VERSION/os.py and the
426 exec_prefix will always be lib/python.VERSION/dynaload, where VERSION
427 is Python's version number as defined at the beginning of this file.
448 expected by other code, by stripping the "lib/python$VERSION/..." stuff
546 bufsz = strlen(zip_path); /* Replace "00" with version */
547 zip_path[bufsz - 6] = VERSION[0];
548 zip_path[bufsz - 5] = VERSION[1];