Changeset 10 for python/trunk/Lib/test
- Timestamp:
- Sep 3, 2010, 5:33:06 PM (15 years ago)
- Location:
- python/trunk/Lib/test
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk/Lib/test/regrtest.py
r2 r10 1037 1037 test_signal 1038 1038 """, 1039 'os2knix': 1040 """ 1041 test_al 1042 test_applesingle 1043 test_audioop 1044 test_bsddb185 1045 test_bsddb3 1046 test_cd 1047 test_cl 1048 test_commands 1049 test_dl 1050 test_gl 1051 test_imgfile 1052 test_linuxaudiodev 1053 test_mhlib 1054 test_mmap 1055 test_nis 1056 test_openpty 1057 test_ossaudiodev 1058 test_pty 1059 test_resource 1060 test_sqlite 1061 test_startfile 1062 test_sunaudiodev 1063 """, 1039 1064 'freebsd4': 1040 1065 """ -
python/trunk/Lib/test/test_tempfile.py
r2 r10 260 260 mode = stat.S_IMODE(os.stat(file.name).st_mode) 261 261 expected = 0600 262 if sys.platform in ('win32', 'os2emx', ' mac'):262 if sys.platform in ('win32', 'os2emx', 'os2knix', 'mac'): 263 263 # There's no distinction among 'user', 'group' and 'world'; 264 264 # replicate the 'user' bits. … … 479 479 mode &= 0777 # Mask off sticky bits inherited from /tmp 480 480 expected = 0700 481 if sys.platform in ('win32', 'os2emx', ' mac'):481 if sys.platform in ('win32', 'os2emx', 'os2knix', 'mac'): 482 482 # There's no distinction among 'user', 'group' and 'world'; 483 483 # replicate the 'user' bits. -
python/trunk/Lib/test/test_unicodedata.py
r2 r10 72 72 # but the other test cases will still be run 73 73 import unicodedata 74 self.db = unicodedata75 74 76 75 def tearDown(self):
Note:
See TracChangeset
for help on using the changeset viewer.