summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-09-05 21:44:56 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-09-05 21:44:56 (GMT)
commita1bea6e10c6177813aab34a0f05c3d531ec8fd66 (patch)
tree8dd844787a03faeb3c35492e8770f4eb4a2a6842 /Lib/distutils/command
parenta404b49321e877f3895c04da7edecae086b8d105 (diff)
downloadcpython-a1bea6e10c6177813aab34a0f05c3d531ec8fd66.zip
cpython-a1bea6e10c6177813aab34a0f05c3d531ec8fd66.tar.gz
cpython-a1bea6e10c6177813aab34a0f05c3d531ec8fd66.tar.bz2
Issue #9561: distutils now reads and writes egg-info files using UTF-8
instead of the locale encoding.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/install_egg_info.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/distutils/command/install_egg_info.py b/Lib/distutils/command/install_egg_info.py
index c888031..c2a7d64 100644
--- a/Lib/distutils/command/install_egg_info.py
+++ b/Lib/distutils/command/install_egg_info.py
@@ -40,9 +40,8 @@ class install_egg_info(Command):
"Creating "+self.install_dir)
log.info("Writing %s", target)
if not self.dry_run:
- f = open(target, 'w')
- self.distribution.metadata.write_pkg_file(f)
- f.close()
+ with open(target, 'w', encoding='UTF-8') as f:
+ self.distribution.metadata.write_pkg_file(f)
def get_outputs(self):
return self.outputs