diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-12-05 23:27:32 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-12-05 23:27:32 (GMT) |
commit | 8a97f4a380a7a356730e48406f8269c3efe5e6eb (patch) | |
tree | f5a4efa93f4edcd303ad92bc16e9d16ee4c6616b /Lib/test/test_fcntl.py | |
parent | a7594db5bc86b692a895e13240bd177bad07516b (diff) | |
download | cpython-8a97f4a380a7a356730e48406f8269c3efe5e6eb.zip cpython-8a97f4a380a7a356730e48406f8269c3efe5e6eb.tar.gz cpython-8a97f4a380a7a356730e48406f8269c3efe5e6eb.tar.bz2 |
sys.platform on Mac OS X is now "darwin", without any version number appended.
This should probably go into NEWS (who's responsible for that?).
Diffstat (limited to 'Lib/test/test_fcntl.py')
-rwxr-xr-x | Lib/test/test_fcntl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_fcntl.py b/Lib/test/test_fcntl.py index e446249..1cb62b5 100755 --- a/Lib/test/test_fcntl.py +++ b/Lib/test/test_fcntl.py @@ -16,7 +16,7 @@ except AttributeError: else: start_len = "qq" -if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin1', +if sys.platform in ('netbsd1', 'Darwin1.2', 'darwin', 'freebsd2', 'freebsd3', 'freebsd4', 'freebsd5', 'bsdos2', 'bsdos3', 'bsdos4', 'openbsd', 'openbsd2'): |