Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make getpath.c easier to follow. #28909

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions Include/internal/pycore_pathconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,23 @@ extern "C" {
# error "this header requires Py_BUILD_CORE define"
#endif

#define LOCATION_UNKNOWN (0)
#define LOCATION_EXISTS (1<<0)
#define LOCATION_FORCED (1<<1) /* trusted to exist */
#define LOCATION_DEFAULT (1<<2) /* the default value */
#define LOCATION_CUSTOM (1<<3) /* from a file or env var */
/* build-defined */
#define LOCATION_PREFIX (1<<10)
#define LOCATION_EXEC_PREFIX (1<<11)
/* build-related */
#define LOCATION_IN_BUILD_DIR (1<<15)
#define LOCATION_IN_SOURCE_TREE (1<<16)
/* relative */
#define LOCATION_WITH_FILE (1<<20) /* in the tree under dirname(<file>)
(combined with LOCATION_NEAR_*) */
#define LOCATION_NEAR_ARGV0 (1<<21) /* based on a parent of argv[0] */
#define LOCATION_NEAR_LIB (1<<22) /* based on a parent of DLL/SO file */

typedef struct _PyPathConfig {
/* Full path to the Python program */
wchar_t *program_full_path;
Expand Down
Loading