platform.py 281 B

12345678910111213
  1. import os
  2. platform = os.uname()[0]
  3. if platform == 'Linux':
  4. from attic.platform_linux import acl_get, acl_set, API_VERSION
  5. else:
  6. API_VERSION = 1
  7. def acl_get(path, item, numeric_owner=False):
  8. pass
  9. def acl_set(path, item, numeric_owner=False):
  10. pass