summaryrefslogtreecommitdiffstats
path: root/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/sitecustomize.py
blob: 7e82f53c9e1b49ba137a840ddf3de2e9a22975f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
## @file
#
#
# Copyright (c) 2009 - 2014, Apple Inc. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
import sys
import locale

if sys.platform == "darwin" and sys.version_info[0] < 3:
  DefaultLocal = locale.getdefaultlocale()[1]
  if DefaultLocal is None:
    DefaultLocal = 'UTF8'
  sys.setdefaultencoding(DefaultLocal)