787a19d94b028f5bd54c7c8e960d5039c056a670
[imago.git] / commons.py
1 import os
2
3 def clear():
4     if os.name == 'posix':
5         os.system('clear')
6     elif os.name == ('ce', 'nt', 'dos'):
7         os.system('cls')