Ignore:
Timestamp:
Sep 3, 2010, 5:33:06 PM (15 years ago)
Author:
Yuri Dario
Message:

python: merged offline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/trunk/Lib/test/test_tempfile.py

    r2 r10  
    260260        mode = stat.S_IMODE(os.stat(file.name).st_mode)
    261261        expected = 0600
    262         if sys.platform in ('win32', 'os2emx', 'mac'):
     262        if sys.platform in ('win32', 'os2emx', 'os2knix', 'mac'):
    263263            # There's no distinction among 'user', 'group' and 'world';
    264264            # replicate the 'user' bits.
     
    479479            mode &= 0777 # Mask off sticky bits inherited from /tmp
    480480            expected = 0700
    481             if sys.platform in ('win32', 'os2emx', 'mac'):
     481            if sys.platform in ('win32', 'os2emx', 'os2knix', 'mac'):
    482482                # There's no distinction among 'user', 'group' and 'world';
    483483                # replicate the 'user' bits.
Note: See TracChangeset for help on using the changeset viewer.