diff options
author | Jaben Carsey <jaben.carsey@intel.com> | 2018-11-16 23:38:21 +0800 |
---|---|---|
committer | BobCF <bob.c.feng@intel.com> | 2018-12-06 17:10:27 +0800 |
commit | ea55e37c369ac5b9dc1a6fcc647bd3fa20cb05b1 (patch) | |
tree | c4be972e04cbdfbf663a7bbcb51d39fa26b1ead3 /BaseTools/Source/Python/AutoGen | |
parent | 4495792953bc832ddd49a33b2a580fee69d6b314 (diff) | |
download | edk2-ea55e37c369ac5b9dc1a6fcc647bd3fa20cb05b1.tar.gz edk2-ea55e37c369ac5b9dc1a6fcc647bd3fa20cb05b1.tar.bz2 edk2-ea55e37c369ac5b9dc1a6fcc647bd3fa20cb05b1.zip |
BaseTools: cleanup LongFilePathSupport usage
1) remove an identical function and import it from Common.LongFilePathSupport
2) remove an import that is not needed/used.
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com>
Reviewed-by : Bob Feng <bob.c.feng@intel.com>
Diffstat (limited to 'BaseTools/Source/Python/AutoGen')
-rw-r--r-- | BaseTools/Source/Python/AutoGen/UniClassObject.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/BaseTools/Source/Python/AutoGen/UniClassObject.py b/BaseTools/Source/Python/AutoGen/UniClassObject.py index 384f31b165..764d95ec66 100644 --- a/BaseTools/Source/Python/AutoGen/UniClassObject.py +++ b/BaseTools/Source/Python/AutoGen/UniClassObject.py @@ -24,7 +24,7 @@ from io import BytesIO from Common.BuildToolError import *
from Common.StringUtils import GetLineNo
from Common.Misc import PathClass
-from Common.LongFilePathSupport import LongFilePath
+from Common.LongFilePathSupport import LongFilePath, UniToStr
from Common.GlobalData import *
##
# Static definitions
@@ -46,18 +46,6 @@ BACK_SLASH_PLACEHOLDER = u'\u0006' gIncludePattern = re.compile("^#include +[\"<]+([^\"< >]+)[>\"]+$", re.MULTILINE | re.UNICODE)
-## Convert a python unicode string to a normal string
-#
-# Convert a python unicode string to a normal string
-# UniToStr(u'I am a string') is 'I am a string'
-#
-# @param Uni: The python unicode string
-#
-# @retval: The formatted normal string
-#
-def UniToStr(Uni):
- return repr(Uni)[2:-1]
-
## Convert a unicode string to a Hex list
#
# Convert a unicode string to a Hex list
|