summaryrefslogtreecommitdiffstats
path: root/Lib/plat-sunos4
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-05-09 21:15:06 (GMT)
committerFred Drake <fdrake@acm.org>2001-05-09 21:15:06 (GMT)
commit48871f2a6e8ad928c6f44c13a97b99cc384bf648 (patch)
treef7662673e9fd8ce24133a32841c9ff1198ec3d80 /Lib/plat-sunos4
parent76d61399614604504f0bb1bf149d0f1158593524 (diff)
downloadcpython-48871f2a6e8ad928c6f44c13a97b99cc384bf648.zip
cpython-48871f2a6e8ad928c6f44c13a97b99cc384bf648.tar.gz
cpython-48871f2a6e8ad928c6f44c13a97b99cc384bf648.tar.bz2
Remove the old platform-specific FCNTL.py modules; these are no longer
needed now that fcntl exports the constants.
Diffstat (limited to 'Lib/plat-sunos4')
-rwxr-xr-xLib/plat-sunos4/FCNTL.py67
1 files changed, 0 insertions, 67 deletions
diff --git a/Lib/plat-sunos4/FCNTL.py b/Lib/plat-sunos4/FCNTL.py
deleted file mode 100755
index 1256d81..0000000
--- a/Lib/plat-sunos4/FCNTL.py
+++ /dev/null
@@ -1,67 +0,0 @@
-# Generated by h2py from stdin
-_FOPEN = (-1)
-_FREAD = 0x0001
-_FWRITE = 0x0002
-_FNDELAY = 0x0004
-_FAPPEND = 0x0008
-_FSETBLK = 0x0010
-_FASYNC = 0x0040
-_FSHLOCK = 0x0080
-_FEXLOCK = 0x0100
-_FCREAT = 0x0200
-_FTRUNC = 0x0400
-_FEXCL = 0x0800
-_FNBIO = 0x1000
-_FSYNC = 0x2000
-_FNONBLOCK = 0x4000
-_FNOCTTY = 0x8000
-_FMARK = 0x10000
-_FDEFER = 0x20000
-O_RDONLY = 0
-O_WRONLY = 1
-O_RDWR = 2
-O_APPEND = _FAPPEND
-O_CREAT = _FCREAT
-O_TRUNC = _FTRUNC
-O_EXCL = _FEXCL
-O_NONBLOCK = _FNONBLOCK
-O_NOCTTY = _FNOCTTY
-O_SYNC = _FSYNC
-FAPPEND = _FAPPEND
-FSYNC = _FSYNC
-FASYNC = _FASYNC
-FNBIO = _FNBIO
-FNONBIO = _FNONBLOCK
-FNDELAY = _FNDELAY
-FREAD = _FREAD
-FWRITE = _FWRITE
-FMARK = _FMARK
-FDEFER = _FDEFER
-FSETBLK = _FSETBLK
-FSHLOCK = _FSHLOCK
-FEXLOCK = _FEXLOCK
-FOPEN = _FOPEN
-FCREAT = _FCREAT
-FTRUNC = _FTRUNC
-FEXCL = _FEXCL
-FNOCTTY = _FNOCTTY
-FD_CLOEXEC = 1
-F_DUPFD = 0
-F_GETFD = 1
-F_SETFD = 2
-F_GETFL = 3
-F_SETFL = 4
-F_GETOWN = 5
-F_SETOWN = 6
-F_GETLK = 7
-F_SETLK = 8
-F_SETLKW = 9
-F_RGETLK = 10
-F_RSETLK = 11
-F_CNVT = 12
-F_RSETLKW = 13
-F_RDLCK = 1
-F_WRLCK = 2
-F_UNLCK = 3
-F_UNLKSYS = 4
-O_ACCMODE = (O_RDONLY|O_WRONLY|O_RDWR)