Staging
v0.5.1
https://github.com/python/cpython
Revision 96fb828da305b18336b8d74b14f479c4f286cf7b authored by Miss Islington (bot) on 26 May 2018, 21:57:01 UTC, committed by GitHub on 26 May 2018, 21:57:01 UTC

The failure may be due to the use oF ZFS, a case we already ignore
for Solaris-based systems where ZFS is frequently used.
(cherry picked from commit 09c4a7dee2eb39b515e5f499f184257cdbe9cb42)

Co-authored-by: Ned Deily <nad@python.org>
1 parent e60f6e1
Raw File
Tip revision: 96fb828da305b18336b8d74b14f479c4f286cf7b authored by Miss Islington (bot) on 26 May 2018, 21:57:01 UTC
bpo-33655: Also ignore test_posix_fallocate failures on BSD platforms (GH-7134)
Tip revision: 96fb828
osmodule.h

/* os module interface */

#ifndef Py_OSMODULE_H
#define Py_OSMODULE_H
#ifdef __cplusplus
extern "C" {
#endif

#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03060000
PyAPI_FUNC(PyObject *) PyOS_FSPath(PyObject *path);
#endif

#ifdef __cplusplus
}
#endif
#endif /* !Py_OSMODULE_H */
back to top