cpython: e4aa34a7ca53 (original) (raw)

Mercurial > cpython

changeset 104565:e4aa34a7ca53 3.5

Issue #19795: Improved more markups of True/False. [#19795]

Serhiy Storchaka storchaka@gmail.com
date Wed, 19 Oct 2016 18:30:05 +0300
parents 9ef78351d2e9
children 7b143d6834cf c445746d0846
files Doc/c-api/number.rst Doc/library/asyncio-eventloop.rst Doc/library/asyncio-task.rst Doc/library/ctypes.rst Doc/library/functools.rst Doc/library/io.rst Doc/library/logging.rst Doc/library/quopri.rst Doc/library/ssl.rst Doc/library/subprocess.rst Doc/library/sysconfig.rst Doc/library/threading.rst Doc/whatsnew/2.7.rst Doc/whatsnew/3.3.rst
diffstat 14 files changed, 23 insertions(+), 23 deletions(-)[+] [-] Doc/c-api/number.rst 4 Doc/library/asyncio-eventloop.rst 4 Doc/library/asyncio-task.rst 4 Doc/library/ctypes.rst 6 Doc/library/functools.rst 2 Doc/library/io.rst 2 Doc/library/logging.rst 2 Doc/library/quopri.rst 2 Doc/library/ssl.rst 2 Doc/library/subprocess.rst 2 Doc/library/sysconfig.rst 2 Doc/library/threading.rst 2 Doc/whatsnew/2.7.rst 10 Doc/whatsnew/3.3.rst 2

line wrap: on

line diff

--- a/Doc/c-api/number.rst +++ b/Doc/c-api/number.rst @@ -278,5 +278,5 @@ Number Protocol .. c:function:: int PyIndex_Check(PyObject *o)

--- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -346,7 +346,7 @@ Creating connections * reuse_address tells the kernel to reuse a local socket in TIME_WAIT state, without waiting for its natural timeout to

* reuse_port tells the kernel to allow this endpoint to be bound to the @@ -424,7 +424,7 @@ Creating listening connections * reuse_address tells the kernel to reuse a local socket in TIME_WAIT state, without waiting for its natural timeout to

* reuse_port tells the kernel to allow this endpoint to be bound to the

--- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -245,7 +245,7 @@ Future .. method:: done()

Done means either that a result / exception are available, or that the future was cancelled. @@ -562,7 +562,7 @@ Task functions All futures must share the same event loop. If all the tasks are done successfully, the returned future's result is the list of results (in the order of the original sequence, not necessarily the order of results

--- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -1358,7 +1358,7 @@ details, consult the :manpage:dlopen(3)[](#l4.3) ignored. On posix systems, RTLD_NOW is always added, and is not[](#l4.4) configurable.[](#l4.5) [](#l4.6) -The *use_errno* parameter, when set to True, enables a ctypes mechanism that[](#l4.7) +The *use_errno* parameter, when set to true, enables a ctypes mechanism that[](#l4.8) allows accessing the system :data:errno error number in a safe way.[](#l4.9) :mod:ctypes maintains a thread-local copy of the systems :data:errno[](#l4.10) variable; if you call foreign functions created with ``use_errno=True`` then the[](#l4.11) @@ -1369,7 +1369,7 @@ The function :func:ctypes.get_errno re[](#l4.12) copy, and the function :func:ctypes.set_errno changes the ctypes private copy[](#l4.13) to a new value and returns the former value.[](#l4.14) [](#l4.15) -The *use_last_error* parameter, when set to True, enables the same mechanism for[](#l4.16) +The *use_last_error* parameter, when set to true, enables the same mechanism for[](#l4.17) the Windows error code which is managed by the :func:GetLastError and[](#l4.18) :func:SetLastError Windows API functions; :func:ctypes.get_last_error and[](#l4.19) :func:ctypes.set_last_error` are used to request and change the ctypes private @@ -1579,7 +1579,7 @@ type and the argument types of the funct The returned function prototype creates functions that use the standard C calling convention. The function will release the GIL during the call. If

--- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -56,7 +56,7 @@ The :mod:functools module defines the grow without bound. The LRU feature performs best when maxsize is a power-of-two.

--- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -537,7 +537,7 @@ Raw File I/O The name can be one of two things: * a character string or :class:bytes object representing the path to the

--- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -318,7 +318,7 @@ is the module's name in the Python packa looking for handlers in this logger and its parents in the logger hierarchy. Returns True if a handler was found, else False. The method stops searching up the hierarchy whenever a logger with the 'propagate' attribute set to

--- a/Doc/library/quopri.rst +++ b/Doc/library/quopri.rst @@ -52,7 +52,7 @@ sending a graphics file. Like :func:encode, except that it accepts a source :class:bytes and returns the corresponding encoded :class:bytes. By default, it sends a

--- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1387,7 +1387,7 @@ to speed up repeated connections from th This setting doesn't apply to client sockets. You can also use the :data:OP_SINGLE_ECDH_USE option to further improve security.

--- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -64,7 +64,7 @@ compatibility with older versions, see t is automatically created with stdin=PIPE, and the stdin argument may not be used as well.

--- a/Doc/library/sysconfig.rst +++ b/Doc/library/sysconfig.rst @@ -152,7 +152,7 @@ identifier. Python currently uses eight If vars is provided, it must be a dictionary of variables that will update the dictionary used to expand the paths.

--- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -615,7 +615,7 @@ item to the buffer only needs to wake up .. method:: wait_for(predicate, timeout=None)

--- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -245,8 +245,8 @@ Deleting an entry and reinserting it wil [('first', 1), ('third', 3), ('second', 5)] The :meth:~collections.OrderedDict.popitem method has an optional last -argument that defaults to True. If last is True, the most recently -added key is returned and removed; if it's False, the +argument that defaults to True. If last is true, the most recently +added key is returned and removed; if it's false, the oldest key is selected:: >>> od = OrderedDict([(x,0) for x in range(20)]) @@ -1518,7 +1518,7 @@ changes, or look through the Subversion

--- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1742,7 +1742,7 @@ sched -----