8 lines
135 B
Python
8 lines
135 B
Python
import sys
|
|
|
|
|
|
def is_windows():
|
|
return sys.platform.startswith('win')
|
|
|
|
def is_darwin():
|
|
return sys.platform.startswith('darwin') |