Staging
v0.8.1
https://github.com/python/cpython
Revision 45ac47c0b2798cc3a29cf5111694aba5e9347e08 authored by Guido van Rossum on 08 October 1997, 15:22:32 UTC, committed by Guido van Rossum on 08 October 1997, 15:22:32 UTC
1 parent 8450370
Raw File
Tip revision: 45ac47c0b2798cc3a29cf5111694aba5e9347e08 authored by Guido van Rossum on 08 October 1997, 15:22:32 UTC
Allow open file as parameter (must be seekable) (Jack)
Tip revision: 45ac47c
errno_unix.h

#define ENOTDIR		(-120)
#define EACCES		(-54)
#define EEXIST		(-48)
#define EBUSY		(-47)
#define EROFS		(-44)
#define ENOENT		(-43)
#define ENFILE		(-42)
#define	EIO			(-36)
#define ENOSPC		(-34)

#define ESRCH		3
#define EINTR		4
#define EBADF		9
#define ENODEV		19
#define EINVAL		22
#define EMFILE		24

back to top