REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2301 This interface was a originally a no-op in python 3, and now is fully removed causing a build warning on macOS (Darwin). Signed-off-by: Vitaly Cheptsov <vit9696@protonmail.com>> Acked-by: Bob Feng <bob.c.feng@intel.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			364 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			364 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" and sys.version_info[0] < 3:
 | 
						|
  DefaultLocal = locale.getdefaultlocale()[1]
 | 
						|
  if DefaultLocal is None:
 | 
						|
    DefaultLocal = 'UTF8'
 | 
						|
  sys.setdefaultencoding(DefaultLocal)
 | 
						|
 |