diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-05-15 11:18:32 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-05-15 11:18:32 (GMT) |
commit | 8766dfd9e8ae01b05b0625734b7cd8f4e3ddf5ad (patch) | |
tree | 91d29423eecd936bf8f91e335b3d411153a9dcca /Mac/Lib | |
parent | b83b46d2c66df8d8c9dee501da63065d2f2d86f9 (diff) | |
download | cpython-8766dfd9e8ae01b05b0625734b7cd8f4e3ddf5ad.zip cpython-8766dfd9e8ae01b05b0625734b7cd8f4e3ddf5ad.tar.gz cpython-8766dfd9e8ae01b05b0625734b7cd8f4e3ddf5ad.tar.bz2 |
Regenreated for MSL
Diffstat (limited to 'Mac/Lib')
-rw-r--r-- | Mac/Lib/macerrors.py | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Mac/Lib/macerrors.py b/Mac/Lib/macerrors.py index 8020d26..61c70ae 100644 --- a/Mac/Lib/macerrors.py +++ b/Mac/Lib/macerrors.py @@ -579,12 +579,12 @@ EMLINK = 31 #Too many links EPIPE = 32 #Broken pipe EDOM = 33 #Numerical argument out of domain ERANGE = 34 #Result too large -EAGAIN = 35 #Resource temporarily unavailable -EINPROGRESS = 36 #Operation now in progress -EALREADY = 37 #Operation already in progress -ENOTSOCK = 38 #Socket operation on non-socket -EDESTADDRREQ = 39 #Destination address required -EMSGSIZE = 40 #Message too long +EFPOS = 35 #File positioning error +ESIGPARM = 36 #Signal argument error +ENOMEM = 37 #Cannot allocate memory +EACCES = 38 #Permission denied +ENOENT = 39 #No such file or directory +ENOSYS = 40 #Function not implemented EPROTOTYPE = 41 #Protocol wrong type for socket ENOPROTOOPT = 42 #Protocol not available EPROTONOSUPPORT = 43 #Protocol not supported @@ -624,3 +624,8 @@ EPROCUNAVAIL = 76 #Bad procedure for program ENOLCK = 77 #No locks available ENOSYS = 78 #Function not implemented EFTYPE = 79 #Inappropriate file type or format +EINPROGRESS = 136 #Operation now in progress +EALREADY = 137 #Operation already in progress +ENOTSOCK = 138 #Socket operation on non-socket +EDESTADDRREQ = 139 #Destination address required +EMSGSIZE = 140 #Message too long |