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
3ee62702
Commit
3ee62702
authored
Jun 04, 2016
by
Martin Panter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in code comment and documentation
parent
6047b553
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
Doc/library/asyncio-sync.rst
Doc/library/asyncio-sync.rst
+1
-1
Doc/library/marshal.rst
Doc/library/marshal.rst
+1
-1
Doc/library/urllib.request.rst
Doc/library/urllib.request.rst
+1
-1
Lib/asyncio/locks.py
Lib/asyncio/locks.py
+1
-1
Misc/NEWS
Misc/NEWS
+1
-1
Python/symtable.c
Python/symtable.c
+1
-1
No files found.
Doc/library/asyncio-sync.rst
View file @
3ee62702
...
...
@@ -52,7 +52,7 @@ Lock
:meth:`acquire` is a coroutine and should be called with ``yield from``.
Locks also support the context management protocol. ``(yield from lock)``
should be used as context manager expression.
should be used as
the
context manager expression.
This class is :ref:`not thread safe <asyncio-multithreading>`.
...
...
Doc/library/marshal.rst
View file @
3ee62702
...
...
@@ -40,7 +40,7 @@ this module. The following types are supported: booleans, integers, floating
point numbers, complex numbers, strings, bytes, bytearrays, tuples, lists, sets,
frozensets, dictionaries, and code objects, where it should be understood that
tuples, lists, sets, frozensets and dictionaries are only supported as long as
the values contained therein are themselves supported.
the values contained therein are themselves supported.
The
singletons :const:`None`, :const:`Ellipsis` and :exc:`StopIteration` can also be
marshalled and unmarshalled.
For format *version* lower than 3, recursive lists, sets and dictionaries cannot
...
...
Doc/library/urllib.request.rst
View file @
3ee62702
...
...
@@ -59,7 +59,7 @@ The :mod:`urllib.request` module defines the following functions:
The *cadefault* parameter is ignored.
This function always returns an object which can work as
This function always returns an object which can work as
a
:term:`context manager` and has methods such as
* :meth:`~urllib.response.addinfourl.geturl` --- return the URL of the resource retrieved,
...
...
Lib/asyncio/locks.py
View file @
3ee62702
...
...
@@ -111,7 +111,7 @@ class Lock(_ContextManagerMixin):
acquire() is a coroutine and should be called with 'yield from'.
Locks also support the context management protocol. '(yield from lock)'
should be used as context manager expression.
should be used as
the
context manager expression.
Usage:
...
...
Misc/NEWS
View file @
3ee62702
...
...
@@ -7778,7 +7778,7 @@ Library
-
Issue
#
16176
:
Properly
identify
Windows
8
via
platform
.
platform
()
-
Issue
#
16088
:
BaseHTTPRequestHandler
's send_error method includes a
Content-Length header in it
'
s
response
now
.
Patch
by
Antoine
Pitrou
.
Content-Length header in its response now. Patch by Antoine Pitrou.
- Issue #16114: The subprocess module no longer provides a misleading error
message stating that args[0] did not exist when either the cwd or executable
...
...
Python/symtable.c
View file @
3ee62702
...
...
@@ -854,7 +854,7 @@ analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free,
/* Copy the bound and global dictionaries.
These dictionar
y
are used by all blocks enclosed by the
These dictionar
ies
are used by all blocks enclosed by the
current block. The analyze_block() call modifies these
dictionaries.
...
...
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