mirror of
https://github.com/borgbackup/borg.git
synced 2026-04-09 10:56:23 -04:00
we don't want to have a failing test just because a not compiled msgpack was used to run the tests.
14 lines
359 B
Python
14 lines
359 B
Python
"""
|
|
Flags for Platform-specific APIs.
|
|
|
|
Use these Flags instead of sys.platform.startswith('<OS>') or try/except.
|
|
"""
|
|
|
|
import sys
|
|
|
|
is_win32 = sys.platform.startswith("win32")
|
|
is_cygwin = sys.platform.startswith("cygwin")
|
|
|
|
is_linux = sys.platform.startswith("linux")
|
|
is_freebsd = sys.platform.startswith("freebsd")
|
|
is_darwin = sys.platform.startswith("darwin")
|