diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-24 20:11:21 +0000 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-24 20:11:21 +0000 |
commit | 6103ab1d0b3361486960f3fa7711f20c91c535f5 (patch) | |
tree | c4ab6589e1e01f758500b6a054e19a747d3086cb /Lib/test/test_file.py | |
parent | 194fcf2d15c90ae9ed9cb9e1d95721e6a6e54281 (diff) | |
download | cpython-git-6103ab1d0b3361486960f3fa7711f20c91c535f5.tar.gz |
Remove AtheOS support, as per PEP 11 (which claims that all code was removed in Python 3.0).
Diffstat (limited to 'Lib/test/test_file.py')
-rw-r--r-- | Lib/test/test_file.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_file.py b/Lib/test/test_file.py index bd2d7c0493..fa867e0a97 100644 --- a/Lib/test/test_file.py +++ b/Lib/test/test_file.py @@ -106,8 +106,7 @@ class AutoFileTests(unittest.TestCase): ('writelines', ([],)), ('__iter__', ()), ] - if not sys.platform.startswith('atheos'): - methods.append(('truncate', ())) + methods.append(('truncate', ())) # __exit__ should close the file self.f.__exit__(None, None, None) |