cpython: 9fc0f20ea7de (original) (raw)

Mercurial > cpython

changeset 104568:9fc0f20ea7de

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

Serhiy Storchaka storchaka@gmail.com
date Wed, 19 Oct 2016 18:37:07 +0300
parents 2127ef3b7660(current diff)7b143d6834cf(diff)
children 884c9d9159dc
files
diffstat 16 files changed, 28 insertions(+), 28 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/readline.rst 2 Doc/library/ssl.rst 2 Doc/library/subprocess.rst 8 Doc/library/sysconfig.rst 2 Doc/library/threading.rst 2 Doc/library/zipfile.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 @@ -347,7 +347,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 @@ -425,7 +425,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 @@ -1365,7 +1365,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) @@ -1376,7 +1376,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 @@ -1586,7 +1586,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/readline.rst +++ b/Doc/library/readline.rst @@ -171,7 +171,7 @@ The following functions operate on a glo Enable or disable automatic calls to :c:func:add_history when reading input via readline. The enabled argument should be a Boolean value

--- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1536,7 +1536,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 @@ -61,16 +61,16 @@ compatibility with older versions, see t The input argument is passed to :meth:Popen.communicate and thus to the subprocess's stdin. If used it must be a byte sequence, or a string if

--- 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/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -518,7 +518,7 @@ Instances have the following methods and .. method:: ZipInfo.is_dir()

--- 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 -----