2014-08-28 15:53:34 +02:00
|
|
|
## @file
|
2014-01-27 06:23:15 +01:00
|
|
|
#
|
2014-08-28 15:53:34 +02:00
|
|
|
#
|
|
|
|
# Copyright (c) 2009 - 2014, Apple Inc. All rights reserved.<BR>
|
2014-01-27 06:23:15 +01:00
|
|
|
#
|
2019-04-04 01:03:11 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2014-01-27 06:23:15 +01:00
|
|
|
import sys
|
|
|
|
import locale
|
|
|
|
|
2019-10-20 12:26:18 +02:00
|
|
|
if sys.platform == "darwin" and sys.version_info[0] < 3:
|
2014-01-27 06:23:15 +01:00
|
|
|
DefaultLocal = locale.getdefaultlocale()[1]
|
|
|
|
if DefaultLocal is None:
|
2018-07-05 11:40:04 +02:00
|
|
|
DefaultLocal = 'UTF8'
|
2014-01-27 06:23:15 +01:00
|
|
|
sys.setdefaultencoding(DefaultLocal)
|
|
|
|
|