blob: fa5cd40705cf482f7c4ba6bde8666058be25a74f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import sys
import locale
if sys.platform == "darwin":
DefaultLocal = locale.getdefaultlocale()[1]
if DefaultLocal is None:
DefaultLocal = 'UTF8'
sys.setdefaultencoding(DefaultLocal)
|