Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
c9eb6ca2
Commit
c9eb6ca2
authored
Dec 06, 2009
by
Tarek Ziadé
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed #1923: make sure we don't strip meaningful whitespace in PKG-INFO Description field
parent
7ed6e18a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
tests/test_dist.py
tests/test_dist.py
+16
-0
util.py
util.py
+2
-2
No files found.
tests/test_dist.py
View file @
c9eb6ca2
...
...
@@ -6,6 +6,7 @@ import StringIO
import
sys
import
unittest
import
warnings
import
textwrap
from
distutils.dist
import
Distribution
,
fix_help_options
from
distutils.cmd
import
Command
...
...
@@ -381,6 +382,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
))
...
...
util.py
View file @
c9eb6ca2
...
...
@@ -558,8 +558,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
(
'(
\
d+
\
.
\
d+(
\
.
\
d+)*)
'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment