diff options
author | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-04-04 23:40:55 +0000 |
---|---|---|
committer | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-04-04 23:40:55 +0000 |
commit | 3b553e0ab2146ef2055c969a1893b453b2023cf4 (patch) | |
tree | 5e3387aa1baee263dbc40feb3e392dab670eb290 /AppPkg/Applications/Python/PyMod-2.7.2/Lib/site.py | |
parent | 7a616e5b77655ece707b132b746c8df565edaf05 (diff) | |
download | edk2-platforms-3b553e0ab2146ef2055c969a1893b453b2023cf4.tar.xz |
AppPkg/Applications/Python: Fix bug where the StdLib\lib\site-python and StdLib\lib\python.27\site-customize directories were not being processed. Fix bug where unicode strings were not being correctly encoded in the "idna" encoding before being passed to low-level networking functions. Correct problem where a spurious message, "Shell: Incorrect redirection syntax - '2>/dev/null'", was being output by PyDoc.
Signed-off-by: daryl.mcdaniel@intel.com
Reviewed-by: jordan.l.justen@intel.com
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13161 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'AppPkg/Applications/Python/PyMod-2.7.2/Lib/site.py')
-rw-r--r-- | AppPkg/Applications/Python/PyMod-2.7.2/Lib/site.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/PyMod-2.7.2/Lib/site.py b/AppPkg/Applications/Python/PyMod-2.7.2/Lib/site.py index de366e8dbf..5525d4a8e0 100644 --- a/AppPkg/Applications/Python/PyMod-2.7.2/Lib/site.py +++ b/AppPkg/Applications/Python/PyMod-2.7.2/Lib/site.py @@ -503,6 +503,7 @@ def execusercustomize(): def main():
abs__file__()
known_paths = removeduppaths()
+ known_paths = addsitepackages(known_paths)
setquit()
setcopyright()
sethelper()
|