mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Added linux2 specific code :-(
This commit is contained in:
parent
5f8ea10bc2
commit
ba885ffaa0
1 changed files with 3 additions and 0 deletions
|
|
@ -196,6 +196,9 @@ class _posixfile_:
|
|||
elif sys.platform in ['aix3', 'aix4']:
|
||||
l_type, l_whence, l_start, l_len, l_sysid, l_pid, l_vfs = \
|
||||
struct.unpack('hhlllii', flock)
|
||||
elif sys.platform == "linux2":
|
||||
l_type, l_whence, l_start, l_len, l_pid, l_sysid = \
|
||||
struct.unpack('hhllhh', flock)
|
||||
else:
|
||||
l_type, l_whence, l_start, l_len, l_sysid, l_pid = \
|
||||
struct.unpack('hhllhh', flock)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue