Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ad548b85
Commit
ad548b85
authored
Jul 31, 2011
by
Éric Araujo
Browse files
Options
Browse Files
Download
Plain Diff
Merge fixes for #9860, #11104/#8688 and #12331 from 3.2
parents
052c83cf
548c054f
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
111 additions
and
47 deletions
+111
-47
Doc/distutils/sourcedist.rst
Doc/distutils/sourcedist.rst
+17
-8
Lib/distutils/command/sdist.py
Lib/distutils/command/sdist.py
+29
-19
Lib/distutils/tests/test_sdist.py
Lib/distutils/tests/test_sdist.py
+33
-6
Lib/lib2to3/tests/test_refactor.py
Lib/lib2to3/tests/test_refactor.py
+11
-7
Misc/ACKS
Misc/ACKS
+2
-0
Misc/NEWS
Misc/NEWS
+6
-0
Tools/scripts/patchcheck.py
Tools/scripts/patchcheck.py
+13
-7
No files found.
Doc/distutils/sourcedist.rst
View file @
ad548b85
...
@@ -103,10 +103,20 @@ per line, regular files (or symlinks to them) only. If you do supply your own
...
@@ -103,10 +103,20 @@ per line, regular files (or symlinks to them) only. If you do supply your own
:file:`MANIFEST`, you must specify everything: the default set of files
:file:`MANIFEST`, you must specify everything: the default set of files
described above does not apply in this case.
described above does not apply in this case.
.. versionadded:: 3.1
.. versionchanged:: 3.1
An existing generated :file:`MANIFEST` will be regenerated without
:command:`sdist` comparing its modification time to the one of
:file:`MANIFEST.in` or :file:`setup.py`.
.. versionchanged:: 3.1.3
:file:`MANIFEST` files start with a comment indicating they are generated.
:file:`MANIFEST` files start with a comment indicating they are generated.
Files without this comment are not overwritten or removed.
Files without this comment are not overwritten or removed.
.. versionchanged:: 3.2.2
:command:`sdist` will read a :file:`MANIFEST` file if no :file:`MANIFEST.in`
exists, like it used to do.
The manifest template has one command per line, where each command specifies a
The manifest template has one command per line, where each command specifies a
set of files to include or exclude from the source distribution. For an
set of files to include or exclude from the source distribution. For an
example, again we turn to the Distutils' own manifest template::
example, again we turn to the Distutils' own manifest template::
...
@@ -185,8 +195,12 @@ Manifest-related options
...
@@ -185,8 +195,12 @@ Manifest-related options
The normal course of operations for the :command:`sdist` command is as follows:
The normal course of operations for the :command:`sdist` command is as follows:
* if the manifest file, :file:`MANIFEST` doesn't exist, read :file:`MANIFEST.in`
* if the manifest file (:file:`MANIFEST` by default) exists and the first line
and create the manifest
does not have a comment indicating it is generated from :file:`MANIFEST.in`,
then it is used as is, unaltered
* if the manifest file doesn't exist or has been previously automatically
generated, read :file:`MANIFEST.in` and create the manifest
* if neither :file:`MANIFEST` nor :file:`MANIFEST.in` exist, create a manifest
* if neither :file:`MANIFEST` nor :file:`MANIFEST.in` exist, create a manifest
with just the default file set
with just the default file set
...
@@ -204,8 +218,3 @@ distribution::
...
@@ -204,8 +218,3 @@ distribution::
python setup.py sdist --manifest-only
python setup.py sdist --manifest-only
:option:`-o` is a shortcut for :option:`--manifest-only`.
:option:`-o` is a shortcut for :option:`--manifest-only`.
.. versionchanged:: 3.1
An existing generated :file:`MANIFEST` will be regenerated without
:command:`sdist` comparing its modification time to the one of
:file:`MANIFEST.in` or :file:`setup.py`.
Lib/distutils/command/sdist.py
View file @
ad548b85
...
@@ -174,14 +174,20 @@ class sdist(Command):
...
@@ -174,14 +174,20 @@ class sdist(Command):
reading the manifest, or just using the default file set -- it all
reading the manifest, or just using the default file set -- it all
depends on the user's options.
depends on the user's options.
"""
"""
# new behavior:
# new behavior
when using a template
:
# the file list is recalculated everytime because
# the file list is recalculated everytime because
# even if MANIFEST.in or setup.py are not changed
# even if MANIFEST.in or setup.py are not changed
# the user might have added some files in the tree that
# the user might have added some files in the tree that
# need to be included.
# need to be included.
#
#
# This makes --force the default and only behavior.
# This makes --force the default and only behavior
with templates
.
template_exists
=
os
.
path
.
isfile
(
self
.
template
)
template_exists
=
os
.
path
.
isfile
(
self
.
template
)
if
not
template_exists
and
self
.
_manifest_is_not_generated
():
self
.
read_manifest
()
self
.
filelist
.
sort
()
self
.
filelist
.
remove_duplicates
()
return
if
not
template_exists
:
if
not
template_exists
:
self
.
warn
((
"manifest template '%s' does not exist "
+
self
.
warn
((
"manifest template '%s' does not exist "
+
"(using default file list)"
)
%
"(using default file list)"
)
%
...
@@ -336,14 +342,7 @@ class sdist(Command):
...
@@ -336,14 +342,7 @@ class sdist(Command):
by '
add_defaults
()
' and '
read_template
()
') to the manifest file
by '
add_defaults
()
' and '
read_template
()
') to the manifest file
named by '
self
.
manifest
'.
named by '
self
.
manifest
'.
"""
"""
if os.path.isfile(self.manifest):
if self._manifest_is_not_generated():
fp = open(self.manifest)
try:
first_line = fp.readline()
finally:
fp.close()
if first_line != '
# file GENERATED by distutils, do NOT edit\n':
log.info("not writing to manually maintained "
log.info("not writing to manually maintained "
"manifest file '
%
s
'" % self.manifest)
"manifest file '
%
s
'" % self.manifest)
return
return
...
@@ -353,6 +352,18 @@ class sdist(Command):
...
@@ -353,6 +352,18 @@ class sdist(Command):
self
.
execute
(
file_util
.
write_file
,
(
self
.
manifest
,
content
),
self
.
execute
(
file_util
.
write_file
,
(
self
.
manifest
,
content
),
"writing manifest file '%s'"
%
self
.
manifest
)
"writing manifest file '%s'"
%
self
.
manifest
)
def
_manifest_is_not_generated
(
self
):
# check for special comment used in 3.1.3 and higher
if
not
os
.
path
.
isfile
(
self
.
manifest
):
return
False
fp
=
open
(
self
.
manifest
)
try
:
first_line
=
fp
.
readline
()
finally
:
fp
.
close
()
return
first_line
!=
'# file GENERATED by distutils, do NOT edit
\
n
'
def
read_manifest
(
self
):
def
read_manifest
(
self
):
"""Read the manifest file (named by 'self.manifest') and use it to
"""Read the manifest file (named by 'self.manifest') and use it to
fill in 'self.filelist', the list of files to include in the source
fill in 'self.filelist', the list of files to include in the source
...
@@ -360,12 +371,11 @@ class sdist(Command):
...
@@ -360,12 +371,11 @@ class sdist(Command):
"""
"""
log
.
info
(
"reading manifest file '%s'"
,
self
.
manifest
)
log
.
info
(
"reading manifest file '%s'"
,
self
.
manifest
)
manifest
=
open
(
self
.
manifest
)
manifest
=
open
(
self
.
manifest
)
while
True
:
for
line
in
manifest
:
line
=
manifest
.
readline
()
# ignore comments and blank lines
if
line
==
''
:
# end of file
line
=
line
.
strip
()
break
if
line
.
startswith
(
'#'
)
or
not
line
:
if
line
[
-
1
]
==
'
\
n
'
:
continue
line
=
line
[
0
:
-
1
]
self
.
filelist
.
append
(
line
)
self
.
filelist
.
append
(
line
)
manifest
.
close
()
manifest
.
close
()
...
...
Lib/distutils/tests/test_sdist.py
View file @
ad548b85
"""Tests for distutils.command.sdist."""
"""Tests for distutils.command.sdist."""
import
os
import
os
import
tarfile
import
unittest
import
unittest
import
shutil
import
warnings
import
zipfile
import
zipfile
from
os.path
import
join
from
os.path
import
join
import
sys
from
textwrap
import
dedent
import
tempfile
import
warnings
from
test.support
import
captured_stdout
,
check_warnings
,
run_unittest
from
test.support
import
captured_stdout
,
check_warnings
,
run_unittest
from
distutils.command.sdist
import
sdist
,
show_formats
from
distutils.command.sdist
import
sdist
,
show_formats
from
distutils.core
import
Distribution
from
distutils.core
import
Distribution
from
distutils.tests.test_config
import
PyPIRCCommandTestCase
from
distutils.tests.test_config
import
PyPIRCCommandTestCase
from
distutils.errors
import
Distutils
ExecError
,
Distutils
OptionError
from
distutils.errors
import
DistutilsOptionError
from
distutils.spawn
import
find_executable
from
distutils.spawn
import
find_executable
from
distutils.tests
import
support
from
distutils.log
import
WARN
from
distutils.log
import
WARN
from
distutils.archive_util
import
ARCHIVE_FORMATS
from
distutils.archive_util
import
ARCHIVE_FORMATS
...
@@ -346,13 +344,33 @@ class SDistTestCase(PyPIRCCommandTestCase):
...
@@ -346,13 +344,33 @@ class SDistTestCase(PyPIRCCommandTestCase):
self
.
assertEqual
(
manifest
[
0
],
self
.
assertEqual
(
manifest
[
0
],
'# file GENERATED by distutils, do NOT edit'
)
'# file GENERATED by distutils, do NOT edit'
)
@
unittest
.
skipUnless
(
ZLIB_SUPPORT
,
"Need zlib support to run"
)
def
test_manifest_comments
(
self
):
# make sure comments don't cause exceptions or wrong includes
contents
=
dedent
(
"""
\
# bad.py
#bad.py
good.py
"""
)
dist
,
cmd
=
self
.
get_cmd
()
cmd
.
ensure_finalized
()
self
.
write_file
((
self
.
tmp_dir
,
cmd
.
manifest
),
contents
)
self
.
write_file
((
self
.
tmp_dir
,
'good.py'
),
'# pick me!'
)
self
.
write_file
((
self
.
tmp_dir
,
'bad.py'
),
"# don't pick me!"
)
self
.
write_file
((
self
.
tmp_dir
,
'#bad.py'
),
"# don't pick me!"
)
cmd
.
run
()
self
.
assertEqual
(
cmd
.
filelist
.
files
,
[
'good.py'
])
@
unittest
.
skipUnless
(
ZLIB_SUPPORT
,
'Need zlib support to run'
)
@
unittest
.
skipUnless
(
ZLIB_SUPPORT
,
'Need zlib support to run'
)
def
test_manual_manifest
(
self
):
def
test_manual_manifest
(
self
):
# check that a MANIFEST without a marker is left alone
# check that a MANIFEST without a marker is left alone
dist
,
cmd
=
self
.
get_cmd
()
dist
,
cmd
=
self
.
get_cmd
()
cmd
.
ensure_finalized
()
cmd
.
ensure_finalized
()
self
.
write_file
((
self
.
tmp_dir
,
cmd
.
manifest
),
'README.manual'
)
self
.
write_file
((
self
.
tmp_dir
,
cmd
.
manifest
),
'README.manual'
)
self
.
write_file
((
self
.
tmp_dir
,
'README.manual'
),
'This project maintains its MANIFEST file itself.'
)
cmd
.
run
()
cmd
.
run
()
self
.
assertEqual
(
cmd
.
filelist
.
files
,
[
'README.manual'
])
f
=
open
(
cmd
.
manifest
)
f
=
open
(
cmd
.
manifest
)
try
:
try
:
...
@@ -363,6 +381,15 @@ class SDistTestCase(PyPIRCCommandTestCase):
...
@@ -363,6 +381,15 @@ class SDistTestCase(PyPIRCCommandTestCase):
self
.
assertEqual
(
manifest
,
[
'README.manual'
])
self
.
assertEqual
(
manifest
,
[
'README.manual'
])
archive_name
=
join
(
self
.
tmp_dir
,
'dist'
,
'fake-1.0.tar.gz'
)
archive
=
tarfile
.
open
(
archive_name
)
try
:
filenames
=
[
tarinfo
.
name
for
tarinfo
in
archive
]
finally
:
archive
.
close
()
self
.
assertEqual
(
sorted
(
filenames
),
[
'fake-1.0'
,
'fake-1.0/PKG-INFO'
,
'fake-1.0/README.manual'
])
def
test_suite
():
def
test_suite
():
return
unittest
.
makeSuite
(
SDistTestCase
)
return
unittest
.
makeSuite
(
SDistTestCase
)
...
...
Lib/lib2to3/tests/test_refactor.py
View file @
ad548b85
...
@@ -177,22 +177,26 @@ from __future__ import print_function"""
...
@@ -177,22 +177,26 @@ from __future__ import print_function"""
self
.
assertEqual
(
results
,
expected
)
self
.
assertEqual
(
results
,
expected
)
def
check_file_refactoring
(
self
,
test_file
,
fixers
=
_2TO3_FIXERS
):
def
check_file_refactoring
(
self
,
test_file
,
fixers
=
_2TO3_FIXERS
):
tmpdir
=
tempfile
.
mkdtemp
(
prefix
=
"2to3-test_refactor"
)
self
.
addCleanup
(
shutil
.
rmtree
,
tmpdir
)
# make a copy of the tested file that we can write to
shutil
.
copy
(
test_file
,
tmpdir
)
test_file
=
os
.
path
.
join
(
tmpdir
,
os
.
path
.
basename
(
test_file
))
os
.
chmod
(
test_file
,
0o644
)
def
read_file
():
def
read_file
():
with
open
(
test_file
,
"rb"
)
as
fp
:
with
open
(
test_file
,
"rb"
)
as
fp
:
return
fp
.
read
()
return
fp
.
read
()
old_contents
=
read_file
()
old_contents
=
read_file
()
rt
=
self
.
rt
(
fixers
=
fixers
)
rt
=
self
.
rt
(
fixers
=
fixers
)
rt
.
refactor_file
(
test_file
)
rt
.
refactor_file
(
test_file
)
self
.
assertEqual
(
old_contents
,
read_file
())
self
.
assertEqual
(
old_contents
,
read_file
())
try
:
rt
.
refactor_file
(
test_file
,
True
)
rt
.
refactor_file
(
test_file
,
True
)
new_contents
=
read_file
()
new_contents
=
read_file
()
self
.
assertNotEqual
(
old_contents
,
new_contents
)
self
.
assertNotEqual
(
old_contents
,
new_contents
)
finally
:
with
open
(
test_file
,
"wb"
)
as
fp
:
fp
.
write
(
old_contents
)
return
new_contents
return
new_contents
def
test_refactor_file
(
self
):
def
test_refactor_file
(
self
):
...
...
Misc/ACKS
View file @
ad548b85
...
@@ -228,6 +228,7 @@ Vincent Delft
...
@@ -228,6 +228,7 @@ Vincent Delft
Arnaud Delobelle
Arnaud Delobelle
Konrad Delong
Konrad Delong
Erik Demaine
Erik Demaine
John Dennis
Roger Dev
Roger Dev
Raghuram Devarakonda
Raghuram Devarakonda
Caleb Deveraux
Caleb Deveraux
...
@@ -931,6 +932,7 @@ Mikhail Terekhov
...
@@ -931,6 +932,7 @@ Mikhail Terekhov
Tobias Thelen
Tobias Thelen
James Thomas
James Thomas
Robin Thomas
Robin Thomas
Stephen Thorne
Jeremy Thurgood
Jeremy Thurgood
Eric Tiedemann
Eric Tiedemann
July Tikhonov
July Tikhonov
...
...
Misc/NEWS
View file @
ad548b85
...
@@ -249,6 +249,9 @@ Core and Builtins
...
@@ -249,6 +249,9 @@ Core and Builtins
Library
Library
-------
-------
- Issues #11104, #8688: Fix the behavior of distutils'
sdist
command
with
manually
-
maintained
MANIFEST
files
.
-
Issue
#
11281
:
smtplib
.
STMP
gets
source_address
parameter
,
which
adds
the
-
Issue
#
11281
:
smtplib
.
STMP
gets
source_address
parameter
,
which
adds
the
ability
to
bind
to
specific
source
address
on
a
machine
with
multiple
ability
to
bind
to
specific
source
address
on
a
machine
with
multiple
interfaces
.
Patch
by
Paulo
Scardine
.
interfaces
.
Patch
by
Paulo
Scardine
.
...
@@ -1144,6 +1147,9 @@ Extension Modules
...
@@ -1144,6 +1147,9 @@ Extension Modules
Tests
Tests
-----
-----
- Issue #12331: The test suite for lib2to3 can now run from an installed
Python.
- Issue #12626: In regrtest, allow to filter tests using a glob filter
- Issue #12626: In regrtest, allow to filter tests using a glob filter
with the ``-m`` (or ``--match``) option. This works with all test cases
with the ``-m`` (or ``--match``) option. This works with all test cases
using the unittest module. This is useful with long test suites
using the unittest module. This is useful with long test suites
...
...
Tools/scripts/patchcheck.py
View file @
ad548b85
...
@@ -4,11 +4,15 @@ import sys
...
@@ -4,11 +4,15 @@ import sys
import
shutil
import
shutil
import
os.path
import
os.path
import
subprocess
import
subprocess
import
sysconfig
import
reindent
import
reindent
import
untabify
import
untabify
SRCDIR
=
sysconfig
.
get_config_var
(
'srcdir'
)
def
n_files_str
(
count
):
def
n_files_str
(
count
):
"""Return 'N file(s)' with the proper plurality on 'file'."""
"""Return 'N file(s)' with the proper plurality on 'file'."""
return
"{} file{}"
.
format
(
count
,
"s"
if
count
!=
1
else
""
)
return
"{} file{}"
.
format
(
count
,
"s"
if
count
!=
1
else
""
)
...
@@ -36,7 +40,7 @@ def status(message, modal=False, info=None):
...
@@ -36,7 +40,7 @@ def status(message, modal=False, info=None):
info
=
lambda
x
:
n_files_str
(
len
(
x
)))
info
=
lambda
x
:
n_files_str
(
len
(
x
)))
def
changed_files
():
def
changed_files
():
"""Get the list of changed or added files from the VCS."""
"""Get the list of changed or added files from the VCS."""
if
os
.
path
.
isdir
(
'.hg'
):
if
os
.
path
.
isdir
(
os
.
path
.
join
(
SRCDIR
,
'.hg'
)
):
cmd
=
'hg status --added --modified --no-status'
cmd
=
'hg status --added --modified --no-status'
else
:
else
:
sys
.
exit
(
'need a checkout to get modified files'
)
sys
.
exit
(
'need a checkout to get modified files'
)
...
@@ -65,7 +69,7 @@ def normalize_whitespace(file_paths):
...
@@ -65,7 +69,7 @@ def normalize_whitespace(file_paths):
"""Make sure that the whitespace for .py files have been normalized."""
"""Make sure that the whitespace for .py files have been normalized."""
reindent
.
makebackup
=
False
# No need to create backups.
reindent
.
makebackup
=
False
# No need to create backups.
fixed
=
[
path
for
path
in
file_paths
if
path
.
endswith
(
'.py'
)
and
fixed
=
[
path
for
path
in
file_paths
if
path
.
endswith
(
'.py'
)
and
reindent
.
check
(
path
)]
reindent
.
check
(
os
.
path
.
join
(
SRCDIR
,
path
)
)]
return
fixed
return
fixed
...
@@ -74,10 +78,11 @@ def normalize_c_whitespace(file_paths):
...
@@ -74,10 +78,11 @@ def normalize_c_whitespace(file_paths):
"""Report if any C files """
"""Report if any C files """
fixed
=
[]
fixed
=
[]
for
path
in
file_paths
:
for
path
in
file_paths
:
with
open
(
path
,
'r'
)
as
f
:
abspath
=
os
.
path
.
join
(
SRCDIR
,
path
)
with
open
(
abspath
,
'r'
)
as
f
:
if
'
\
t
'
not
in
f
.
read
():
if
'
\
t
'
not
in
f
.
read
():
continue
continue
untabify
.
process
(
path
,
8
,
verbose
=
False
)
untabify
.
process
(
abs
path
,
8
,
verbose
=
False
)
fixed
.
append
(
path
)
fixed
.
append
(
path
)
return
fixed
return
fixed
...
@@ -88,13 +93,14 @@ ws_re = re.compile(br'\s+(\r?\n)$')
...
@@ -88,13 +93,14 @@ ws_re = re.compile(br'\s+(\r?\n)$')
def
normalize_docs_whitespace
(
file_paths
):
def
normalize_docs_whitespace
(
file_paths
):
fixed
=
[]
fixed
=
[]
for
path
in
file_paths
:
for
path
in
file_paths
:
abspath
=
os
.
path
.
join
(
SRCDIR
,
path
)
try
:
try
:
with
open
(
path
,
'rb'
)
as
f
:
with
open
(
abs
path
,
'rb'
)
as
f
:
lines
=
f
.
readlines
()
lines
=
f
.
readlines
()
new_lines
=
[
ws_re
.
sub
(
br'\1'
,
line
)
for
line
in
lines
]
new_lines
=
[
ws_re
.
sub
(
br'\1'
,
line
)
for
line
in
lines
]
if
new_lines
!=
lines
:
if
new_lines
!=
lines
:
shutil
.
copyfile
(
path
,
path
+
'.bak'
)
shutil
.
copyfile
(
abspath
,
abs
path
+
'.bak'
)
with
open
(
path
,
'wb'
)
as
f
:
with
open
(
abs
path
,
'wb'
)
as
f
:
f
.
writelines
(
new_lines
)
f
.
writelines
(
new_lines
)
fixed
.
append
(
path
)
fixed
.
append
(
path
)
except
Exception
as
err
:
except
Exception
as
err
:
...
...
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