From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id CE04220D77DC6 for ; Thu, 6 Apr 2017 19:22:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1491531738; x=1523067738; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=TmU8uxGHfg8fzp1Rj/2Y63CqxJnkEZSMwfloWEY0AnQ=; b=I90kgy2OklbsFSYdnTytT/F42gIFezT0uKbaSzkxbBYdLJG0JrvgCy/a TIffvraZg2XoLkTwr5G9H2HENc/AAg==; Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Apr 2017 19:22:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,162,1488873600"; d="scan'208";a="70778444" Received: from shwdeopenpsi014.ccr.corp.intel.com ([10.239.9.13]) by orsmga002.jf.intel.com with ESMTP; 06 Apr 2017 19:22:16 -0700 From: Hao Wu To: edk2-devel@lists.01.org Cc: Hao Wu , Daryl McDaniel , Jaben Carsey Date: Fri, 7 Apr 2017 10:22:13 +0800 Message-Id: <20170407022213.33780-1-hao.a.wu@intel.com> X-Mailer: git-send-email 2.12.0.windows.1 MIME-Version: 1.0 Subject: [PATCH] AppPkg/Applications/Python/PyMod-2.7.2: Replace non-ascii characters X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Apr 2017 02:22:19 -0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Daryl McDaniel Cc: Jaben Carsey Contributed-under: TianoCore Contribution Agreement 1.0 Contributed-by: gray.wang Signed-off-by: Hao Wu --- AppPkg/Applications/Python/PyMod-2.7.2/Python/marshal.c | 4 ++-- 1 file 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\ -- 2.12.0.windows.1