Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fd1df3f

Browse files
committed
Issue #28394: Merge typo fixes from 3.5 into 3.6
2 parents 49f5cdd + d2a584b commit fd1df3f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Lib/lib2to3/Grammar.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ arglist: argument (',' argument)* [',']
153153
# to our LL(1) parser. Even though 'test' includes '*expr' in star_expr,
154154
# we explicitly match '*' here, too, to give it proper precedence.
155155
# Illegal combinations and orderings are blocked in ast.c:
156-
# multiple (test comp_for) arguements are blocked; keyword unpackings
156+
# multiple (test comp_for) arguments are blocked; keyword unpackings
157157
# that precede iterable unpackings are blocked; etc.
158158
argument: ( test [comp_for] |
159159
test '=' test |

Lib/test/test_httplib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1403,7 +1403,7 @@ def testHTTPConnectionSourceAddress(self):
14031403
def testHTTPSConnectionSourceAddress(self):
14041404
self.conn = client.HTTPSConnection(HOST, self.port,
14051405
source_address=('', self.source_port))
1406-
# We don't test anything here other the constructor not barfing as
1406+
# We don't test anything here other than the constructor not barfing as
14071407
# this code doesn't deal with setting up an active running SSL server
14081408
# for an ssl_wrapped connect() to actually return from.
14091409

Misc/HISTORY

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9016,7 +9016,7 @@ Library
90169016
- Issue #5976: Fixed Distutils test_check_environ.
90179017

90189018
- Issue #5941: Distutils build_clib command was not working anymore because
9019-
of an incomplete costumization of the archiver command. Added ARFLAGS in the
9019+
of an incomplete customization of the archiver command. Added ARFLAGS in the
90209020
Makefile besides AR and make Distutils use it. Original patch by David
90219021
Cournapeau.
90229022

Misc/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ Build
708708

709709
- Issue #21590: Support for DTrace and SystemTap probes.
710710

711-
- Issue #26307: The profile-opt build now applys PGO to the built-in modules.
711+
- Issue #26307: The profile-opt build now applies PGO to the built-in modules.
712712

713713
- Issue #26539: Add the --with-optimizations flag to turn on LTO and PGO build
714714
support when available.

0 commit comments

Comments
 (0)