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

Skip to content

Commit f51d715

Browse files
Issue #25523: Further a-to-an corrections new in 3.5.
1 parent a84f6c3 commit f51d715

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Doc/library/glob.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ For example, ``'[?]'`` matches the character ``'?'``.
3838
symlinks are included in the results (as in the shell).
3939

4040
If *recursive* is true, the pattern "``**``" will match any files and zero or
41-
more directories and subdirectories. If the pattern is followed by a
41+
more directories and subdirectories. If the pattern is followed by an
4242
``os.sep``, only directories and subdirectories match.
4343

4444
.. note::

Lib/test/test_asdl_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class TestAsdlParser(unittest.TestCase):
2121
def setUpClass(cls):
2222
# Loads the asdl module dynamically, since it's not in a real importable
2323
# package.
24-
# Parses Python.asdl into a ast.Module and run the check on it.
24+
# Parses Python.asdl into an ast.Module and run the check on it.
2525
# There's no need to do this for each test method, hence setUpClass.
2626
sys.path.insert(0, parser_dir)
2727
loader = importlib.machinery.SourceFileLoader(

Misc/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2483,7 +2483,7 @@ Library
24832483

24842484
- Issue #20170: Convert posixmodule to use Argument Clinic.
24852485

2486-
- Issue #21539: Add a *exists_ok* argument to `Pathlib.mkdir()` to mimic
2486+
- Issue #21539: Add an *exists_ok* argument to `Pathlib.mkdir()` to mimic
24872487
`mkdir -p` and `os.makedirs()` functionality. When true, ignore
24882488
FileExistsErrors. Patch by Berker Peksag.
24892489

Modules/_ssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3273,7 +3273,7 @@ _servername_callback(SSL *s, int *al, void *args)
32733273
ssl = SSL_get_app_data(s);
32743274
assert(PySSLSocket_Check(ssl));
32753275

3276-
/* The servername callback expects a argument that represents the current
3276+
/* The servername callback expects an argument that represents the current
32773277
* SSL connection and that has a .context attribute that can be changed to
32783278
* identify the requested hostname. Since the official API is the Python
32793279
* level API we want to pass the callback a Python level object rather than

0 commit comments

Comments
 (0)