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
2f9171d9
Commit
2f9171d9
authored
Dec 18, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spelling and grammar in code comments and documentation
parent
c69fd86f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
Doc/library/shutil.rst
Doc/library/shutil.rst
+1
-1
Lib/distutils/tests/test_bdist_rpm.py
Lib/distutils/tests/test_bdist_rpm.py
+1
-1
Lib/test/test_unicode.py
Lib/test/test_unicode.py
+1
-1
Misc/HISTORY
Misc/HISTORY
+1
-1
No files found.
Doc/library/shutil.rst
View file @
2f9171d9
...
@@ -581,7 +581,7 @@ provided. They rely on the :mod:`zipfile` and :mod:`tarfile` modules.
...
@@ -581,7 +581,7 @@ provided. They rely on the :mod:`zipfile` and :mod:`tarfile` modules.
By default :mod:`shutil` provides these formats:
By default :mod:`shutil` provides these formats:
- *zip*: ZIP file (unpacking compressed files works only if corresponding
- *zip*: ZIP file (unpacking compressed files works only if
the
corresponding
module is available).
module is available).
- *tar*: uncompressed tar file.
- *tar*: uncompressed tar file.
- *gztar*: gzip'ed tar-file (if the :mod:`zlib` module is available).
- *gztar*: gzip'ed tar-file (if the :mod:`zlib` module is available).
...
...
Lib/distutils/tests/test_bdist_rpm.py
View file @
2f9171d9
...
@@ -96,7 +96,7 @@ class BuildRpmTestCase(support.TempdirManager,
...
@@ -96,7 +96,7 @@ class BuildRpmTestCase(support.TempdirManager,
@
unittest
.
skipIf
(
find_executable
(
'rpmbuild'
)
is
None
,
@
unittest
.
skipIf
(
find_executable
(
'rpmbuild'
)
is
None
,
'the rpmbuild command is not found'
)
'the rpmbuild command is not found'
)
def
test_no_optimize_flag
(
self
):
def
test_no_optimize_flag
(
self
):
# let's create a package that br
ake
s bdist_rpm
# let's create a package that br
eak
s bdist_rpm
tmp_dir
=
self
.
mkdtemp
()
tmp_dir
=
self
.
mkdtemp
()
os
.
environ
[
'HOME'
]
=
tmp_dir
# to confine dir '.rpmdb' creation
os
.
environ
[
'HOME'
]
=
tmp_dir
# to confine dir '.rpmdb' creation
pkg_dir
=
os
.
path
.
join
(
tmp_dir
,
'foo'
)
pkg_dir
=
os
.
path
.
join
(
tmp_dir
,
'foo'
)
...
...
Lib/test/test_unicode.py
View file @
2f9171d9
...
@@ -2615,7 +2615,7 @@ class CAPITest(unittest.TestCase):
...
@@ -2615,7 +2615,7 @@ class CAPITest(unittest.TestCase):
b'repr=%V'
,
None
,
b'abc
\
xff
'
)
b'repr=%V'
,
None
,
b'abc
\
xff
'
)
# not supported: copy the raw format string. these tests are just here
# not supported: copy the raw format string. these tests are just here
# to check for crashs and should not be considered as specifications
# to check for crash
e
s and should not be considered as specifications
check_format
(
'%s'
,
check_format
(
'%s'
,
b'%1%s'
,
b'abc'
)
b'%1%s'
,
b'abc'
)
check_format
(
'%1abc'
,
check_format
(
'%1abc'
,
...
...
Misc/HISTORY
View file @
2f9171d9
...
@@ -2194,7 +2194,7 @@ Core and Builtins
...
@@ -2194,7 +2194,7 @@ Core and Builtins
NULL).
NULL).
- Issue #10829: Refactor PyUnicode_FromFormat(), use the same function to parse
- Issue #10829: Refactor PyUnicode_FromFormat(), use the same function to parse
the format string in the 3 steps, fix crashs on invalid format strings.
the format string in the 3 steps, fix crash
e
s on invalid format strings.
- Issue #13007: whichdb should recognize gdbm 1.9 magic numbers.
- Issue #13007: whichdb should recognize gdbm 1.9 magic numbers.
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