diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-22 17:39:36 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-22 17:39:36 (GMT) |
commit | 12ebbc74f1421bf5979ac904178f3f4e0a0f37d6 (patch) | |
tree | a163a72b7d1be0600d4f91e70a4a9a6d28a3d105 /Modules | |
parent | 4f38e483c2982dc5c304dc784d4094ab174d5be5 (diff) | |
download | cpython-12ebbc74f1421bf5979ac904178f3f4e0a0f37d6.zip cpython-12ebbc74f1421bf5979ac904178f3f4e0a0f37d6.tar.gz cpython-12ebbc74f1421bf5979ac904178f3f4e0a0f37d6.tar.bz2 |
Issue #23152: Move declaration into a header and exclude from stable API.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 0d3fe57..945c9d0 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1560,10 +1560,6 @@ get_target_path(HANDLE hdl, wchar_t **target_path) return TRUE; } -/* defined in fileutils.c */ -void -_Py_attribute_data_to_stat(BY_HANDLE_FILE_INFORMATION *info, ULONG reparse_tag, struct _Py_stat_struct *result); - static int win32_xstat_impl_w(const wchar_t *path, struct _Py_stat_struct *result, BOOL traverse); @@ -6201,11 +6197,6 @@ exit: return return_value; } -#ifdef MS_WINDOWS -void -_Py_time_t_to_FILE_TIME(time_t time_in, int nsec_in, FILETIME *out_ptr); -#endif - static PyObject * os_utime_impl(PyModuleDef *module, path_t *path, PyObject *times, PyObject *ns, int dir_fd, int follow_symlinks) /*[clinic end generated code: output=891489c35cc68c5d input=1f18c17d5941aa82]*/ |