historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/edk2/BaseTools/Source/Python/sitecustomize.py
2024-01-16 11:20:27 -06:00

15 lines
321 B
Python

## @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":
DefaultLocal = locale.getdefaultlocale()[1]
if DefaultLocal is None:
DefaultLocal = 'UTF8'
sys.setdefaultencoding(DefaultLocal)