Skip to content

Commit 5b2d3e0

Browse files
committed
Deploying to gh-pages from @ c79e8b2 🚀
1 parent bbe4a00 commit 5b2d3e0

File tree

757 files changed

+3173
-3240
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

757 files changed

+3173
-3240
lines changed

.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: af7da336cd20b223d472dd150b7e9996
3+
config: 256ad3889ebfb352819c71b61f41e1c6
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

_sources/c-api/object.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Object Protocol
1616
1717
Properly handle returning :c:data:`Py_NotImplemented` from within a C
1818
function (that is, create a new :term:`strong reference`
19-
to NotImplemented and return it).
19+
to :const:`NotImplemented` and return it).
2020

2121

2222
.. c:macro:: Py_PRINT_RAW

_sources/howto/urllib2.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,5 +594,5 @@ This document was reviewed and revised by John Lee.
594594
scripts with a localhost server, I have to prevent urllib from using
595595
the proxy.
596596
.. [#] urllib opener for SSL proxy (CONNECT method): `ASPN Cookbook Recipe
597-
<https://code.activestate.com/recipes/456195/>`_.
597+
<https://code.activestate.com/recipes/456195-urrlib2-opener-for-ssl-proxy-connect-method/>`_.
598598

_sources/library/__future__.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
:mod:`__future__` --- Future statement definitions
2-
==================================================
1+
:mod:`!__future__` --- Future statement definitions
2+
===================================================
33

44
.. module:: __future__
55
:synopsis: Future statement definitions

_sources/library/__main__.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
:mod:`__main__` --- Top-level code environment
2-
==============================================
1+
:mod:`!__main__` --- Top-level code environment
2+
===============================================
33

44
.. module:: __main__
55
:synopsis: The environment where top-level code is run. Covers command-line

_sources/library/_thread.rst.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
:mod:`_thread` --- Low-level threading API
2-
==========================================
1+
:mod:`!_thread` --- Low-level threading API
2+
===========================================
33

44
.. module:: _thread
55
:synopsis: Low-level threading API.
@@ -166,14 +166,14 @@ Lock objects have the following methods:
166166
time can acquire a lock --- that's their reason for existence).
167167

168168
If the *blocking* argument is present, the action depends on its
169-
value: if it is False, the lock is only acquired if it can be acquired
170-
immediately without waiting, while if it is True, the lock is acquired
169+
value: if it is false, the lock is only acquired if it can be acquired
170+
immediately without waiting, while if it is true, the lock is acquired
171171
unconditionally as above.
172172

173173
If the floating-point *timeout* argument is present and positive, it
174174
specifies the maximum wait time in seconds before returning. A negative
175175
*timeout* argument specifies an unbounded wait. You cannot specify
176-
a *timeout* if *blocking* is False.
176+
a *timeout* if *blocking* is false.
177177

178178
The return value is ``True`` if the lock is acquired successfully,
179179
``False`` if not.

_sources/library/abc.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
:mod:`abc` --- Abstract Base Classes
2-
====================================
1+
:mod:`!abc` --- Abstract Base Classes
2+
=====================================
33

44
.. module:: abc
55
:synopsis: Abstract base classes according to :pep:`3119`.

_sources/library/argparse.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
:mod:`argparse` --- Parser for command-line options, arguments and sub-commands
2-
===============================================================================
1+
:mod:`!argparse` --- Parser for command-line options, arguments and sub-commands
2+
================================================================================
33

44
.. module:: argparse
55
:synopsis: Command-line option and argument parsing library.

_sources/library/array.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
:mod:`array` --- Efficient arrays of numeric values
2-
===================================================
1+
:mod:`!array` --- Efficient arrays of numeric values
2+
====================================================
33

44
.. module:: array
55
:synopsis: Space efficient arrays of uniformly typed numeric values.

_sources/library/ast.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
:mod:`ast` --- Abstract Syntax Trees
2-
====================================
1+
:mod:`!ast` --- Abstract Syntax Trees
2+
=====================================
33

44
.. module:: ast
55
:synopsis: Abstract Syntax Tree classes and manipulation.

0 commit comments

Comments
 (0)