Staging
v0.5.1
https://github.com/python/cpython
Revision 2e2cded1b56cc5488f49d395b46131fd995b02bc authored by Jeremy Hylton on 22 March 2001, 03:57:58 UTC, committed by Jeremy Hylton on 22 March 2001, 03:57:58 UTC
import *.  Mark the offending stmt rather than the function def line.
1 parent 280e6bd
Raw File
Tip revision: 2e2cded1b56cc5488f49d395b46131fd995b02bc authored by Jeremy Hylton on 22 March 2001, 03:57:58 UTC
Set the line number correctly for a nested function with an exec or
Tip revision: 2e2cded
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