Remove AtheOS support, as per PEP 11 (which claims that all code was removed in Python 3.0).

This commit is contained in:
Antoine Pitrou 2009-10-24 20:11:21 +00:00
parent 194fcf2d15
commit 6103ab1d0b
16 changed files with 31 additions and 1693 deletions

View file

@ -16,15 +16,12 @@ fcntl = import_module('fcntl')
# TODO - Write tests for flock() and lockf().
def get_lockdata():
if sys.platform.startswith('atheos'):
start_len = "qq"
try:
os.O_LARGEFILE
except AttributeError:
start_len = "ll"
else:
try:
os.O_LARGEFILE
except AttributeError:
start_len = "ll"
else:
start_len = "qq"
start_len = "qq"
if sys.platform in ('netbsd1', 'netbsd2', 'netbsd3',
'Darwin1.2', 'darwin',