darling-python/2.7/fix/Modules_main.c.ed
Ariel Abreu 5a405172d6
python-125
That's Apple's Python version; but it's actually Python 2.7.16 (no version for 2.6; it's been dropped by Apple)
2020-07-26 08:53:06 -04:00

22 lines
328 B
Plaintext

/pygetopt.h/i
#ifndef OPEN_SOURCE
#ifdef __APPLE__
#include <rootless.h>
#endif
#endif
.
1
/Hash randomization needed early/i
#ifndef OPEN_SOURCE
#ifdef __APPLE__
if (rootless_restricted_environment()) {
Py_IgnoreEnvironmentFlag++;
Py_NoSiteFlag++;
Py_NoUserSiteDirectory++;
}
#endif
#endif
.
w