summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-12-06 09:28:17 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-12-06 09:28:17 (GMT)
commitdf872d47d90ee61633d36d4d308457238889e887 (patch)
tree3b1576e8f68b94cd0f27fd693e75fd1efaa706de /Lib
parent5c2db37c20ad62097ffaaea32c7e332484c200e0 (diff)
downloadcpython-df872d47d90ee61633d36d4d308457238889e887.zip
cpython-df872d47d90ee61633d36d4d308457238889e887.tar.gz
cpython-df872d47d90ee61633d36d4d308457238889e887.tar.bz2
Merged revisions 76684 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76684 | tarek.ziade | 2009-12-06 10:22:40 +0100 (Sun, 06 Dec 2009) | 1 line Fixed #1923: make sure we don't strip meaningful whitespace in PKG-INFO Description field ........
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/tests/test_dist.py16
-rw-r--r--Lib/distutils/util.py4
2 files changed, 18 insertions, 2 deletions
diff --git a/Lib/distutils/tests/test_dist.py b/Lib/distutils/tests/test_dist.py
index b1b184e..0e7d532 100644
--- a/Lib/distutils/tests/test_dist.py
+++ b/Lib/distutils/tests/test_dist.py
@@ -5,6 +5,7 @@ import io
import sys
import unittest
import warnings
+import textwrap
from distutils.dist import Distribution, fix_help_options
from distutils.cmd import Command
@@ -353,6 +354,21 @@ class MetadataTestCase(support.TempdirManager, support.EnvironGuard,
if line.strip() != '']
self.assertTrue(len(output) > 0)
+ def test_long_description(self):
+ long_desc = textwrap.dedent("""\
+ example::
+ We start here
+ and continue here
+ and end here.""")
+ attrs = {"name": "package",
+ "version": "1.0",
+ "long_description": long_desc}
+
+ dist = distutils.dist.Distribution(attrs)
+ meta = self.format_metadata(dist)
+ meta = meta.replace('\n' + 8 * ' ', '\n')
+ self.assertTrue(long_desc in meta)
+
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(DistributionTestCase))
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py
index a50621e..cca7b49 100644
--- a/Lib/distutils/util.py
+++ b/Lib/distutils/util.py
@@ -557,8 +557,8 @@ def rfc822_escape(header):
"""Return a version of the string escaped for inclusion in an
RFC-822 header, by ensuring there are 8 spaces space after each newline.
"""
- lines = [x.strip() for x in header.split('\n')]
- sep = '\n' + 8*' '
+ lines = header.split('\n')
+ sep = '\n' + 8 * ' '
return sep.join(lines)
_RE_VERSION = re.compile(b'(\d+\.\d+(\.\d+)*)')