Staging
v0.5.1
https://github.com/python/cpython
Revision 5b8a523538231162bca6a10b0077998af343f4ba authored by Guido van Rossum on 30 December 1997, 04:38:44 UTC, committed by Guido van Rossum on 30 December 1997, 04:38:44 UTC
Added a warning about the incompleteness to the front.
Added a reminder about CObject to the back.
1 parent 24df684
Raw File
Tip revision: 5b8a523538231162bca6a10b0077998af343f4ba authored by Guido van Rossum on 30 December 1997, 04:38:44 UTC
A whole bunch of typos fixed by Andrew Kuchling.
Tip revision: 5b8a523
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