summaryrefslogtreecommitdiffstats
path: root/AppPkg
diff options
context:
space:
mode:
authorHao Wu <hao.a.wu@intel.com>2017-04-07 10:11:49 +0800
committerHao Wu <hao.a.wu@intel.com>2017-04-10 08:34:08 +0800
commit1ea946d0f9ea7de963545fbe93cc7f781c03d0b2 (patch)
tree39e3a107fae6ff542b6479ee3cb848765843b4d0 /AppPkg
parentc137d95081690d4877fbeb5f1856972e84ac32f2 (diff)
downloadedk2-1ea946d0f9ea7de963545fbe93cc7f781c03d0b2.tar.gz
edk2-1ea946d0f9ea7de963545fbe93cc7f781c03d0b2.tar.bz2
edk2-1ea946d0f9ea7de963545fbe93cc7f781c03d0b2.zip
AppPkg/Applications/Python/PyMod-2.7.2: Replace non-ascii characters
https://bugzilla.tianocore.org/show_bug.cgi?id=462 Contributed-under: TianoCore Contribution Agreement 1.0 Contributed-by: gray.wang <wt180250@126.com> Signed-off-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Diffstat (limited to 'AppPkg')
-rw-r--r--AppPkg/Applications/Python/PyMod-2.7.2/Python/marshal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/AppPkg/Applications/Python/PyMod-2.7.2/Python/marshal.c b/AppPkg/Applications/Python/PyMod-2.7.2/Python/marshal.c
index 153bc13a11..698ffb5734 100644
--- a/AppPkg/Applications/Python/PyMod-2.7.2/Python/marshal.c
+++ b/AppPkg/Applications/Python/PyMod-2.7.2/Python/marshal.c
@@ -1289,7 +1289,7 @@ The file must be an open file object such as sys.stdout or returned by\n\
open() or os.popen(). It must be opened in binary mode ('wb' or 'w+b').\n\
\n\
If the value has (or contains an object that has) an unsupported type, a\n\
-ValueError exception is raised — but garbage data will also be written\n\
+ValueError exception is raised - but garbage data will also be written\n\
to the file. The object will not be properly read back by load()\n\
\n\
New in version 2.4: The version argument indicates the data format that\n\
@@ -1317,7 +1317,7 @@ PyDoc_STRVAR(load_doc,
"load(file)\n\
\n\
Read one value from the open file and return it. If no valid value is\n\
-read (e.g. because the data has a different Python version’s\n\
+read (e.g. because the data has a different Python version's\n\
incompatible marshal format), raise EOFError, ValueError or TypeError.\n\
The file must be an open file object opened in binary mode ('rb' or\n\
'r+b').\n\