[Python-checkins] python/dist/src/Lib posixfile.py,1.28,1.29

perky@users.sourceforge.net perky at users.sourceforge.net
Sun Jul 17 04:37:33 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29720/Lib

Modified Files:
	posixfile.py 
Log Message:
Add support for FreeBSD 7.


Index: posixfile.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/posixfile.py,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- posixfile.py	6 Feb 2005 06:57:07 -0000	1.28
+++ posixfile.py	17 Jul 2005 02:37:00 -0000	1.29
@@ -179,7 +179,8 @@
         if sys.platform in ('netbsd1',
                             'openbsd2',
                             'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5',
-                            'freebsd6', 'bsdos2', 'bsdos3', 'bsdos4'):
+                            'freebsd6', 'freebsd7',
+                            'bsdos2', 'bsdos3', 'bsdos4'):
             flock = struct.pack('lxxxxlxxxxlhh', \
                   l_start, l_len, os.getpid(), l_type, l_whence)
         elif sys.platform in ('aix3', 'aix4'):



More information about the Python-checkins mailing list