summaryrefslogtreecommitdiffstats
path: root/Lib/posixfile.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-08-29 14:57:27 (GMT)
committerGuido van Rossum <guido@python.org>2000-08-29 14:57:27 (GMT)
commit2d21863266ad3b7551e03933abbfadaa86b95fb2 (patch)
treeb616c5e3a393fe79a99430296a36fb85084fd6ba /Lib/posixfile.py
parente504c0c2dc6fabbab4f44dab21674d94f2b6df34 (diff)
downloadcpython-2d21863266ad3b7551e03933abbfadaa86b95fb2.zip
cpython-2d21863266ad3b7551e03933abbfadaa86b95fb2.tar.gz
cpython-2d21863266ad3b7551e03933abbfadaa86b95fb2.tar.bz2
Add support for FreeBSD-[45].
-- tg@FreeBSD.org
Diffstat (limited to 'Lib/posixfile.py')
-rw-r--r--Lib/posixfile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/posixfile.py b/Lib/posixfile.py
index 2db37e0..d358dc4 100644
--- a/Lib/posixfile.py
+++ b/Lib/posixfile.py
@@ -176,7 +176,7 @@ class _posixfile_:
import sys, os
if sys.platform in ('netbsd1',
'openbsd2',
- 'freebsd2', 'freebsd3',
+ 'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5',
'bsdos2', 'bsdos3', 'bsdos4'):
flock = struct.pack('lxxxxlxxxxlhh', \
l_start, l_len, os.getpid(), l_type, l_whence)
@@ -192,7 +192,7 @@ class _posixfile_:
if '?' in how:
if sys.platform in ('netbsd1',
'openbsd2',
- 'freebsd2', 'freebsd3',
+ 'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5',
'bsdos2', 'bsdos3', 'bsdos4'):
l_start, l_len, l_pid, l_type, l_whence = \
struct.unpack('lxxxxlxxxxlhh', flock)