Home
last modified time | relevance | path

Searched refs:allow_fd (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
Dposixmodule.c903 int allow_fd; member
917 #define PATH_T_INITIALIZE(function_name, argument_name, nullable, allow_fd) \ argument
918 {function_name, argument_name, nullable, allow_fd, NULL, FALSE, -1, 0, NULL, NULL}
920 #define PATH_T_INITIALIZE(function_name, argument_name, nullable, allow_fd) \ argument
921 {function_name, argument_name, nullable, allow_fd, NULL, NULL, -1, 0, NULL, NULL}
974 is_index = path->allow_fd && PyIndex_Check(o); in path_converter()
1050 path->allow_fd && path->nullable ? "string, bytes, os.PathLike, " in path_converter()
1052 path->allow_fd ? "string, bytes, os.PathLike or integer" : in path_converter()
1081 path->allow_fd && path->nullable ? "string, bytes, os.PathLike, " in path_converter()
1083 path->allow_fd ? "string, bytes, os.PathLike or integer" : in path_converter()
/external/python/cpython3/Lib/test/
Dtest_os.py3295 for name, allow_fd, extra_args, cleanup_fn in self.functions:
3315 if allow_fd: