Skip to content

Commit ca9fdd9

Browse files
committed
Deploying to gh-pages from @ 76ab204 🚀
1 parent ef8cf92 commit ca9fdd9

File tree

564 files changed

+1605
-1628
lines changed

Some content is hidden

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

564 files changed

+1605
-1628
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: 0c4186e2a1145bd5ce018bf076bcde5c
3+
config: a106bc1aa0adf41da663be30441342a4
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

_sources/c-api/code.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ bound into a function.
9090
Return the line number of the instruction that occurs on or before ``byte_offset`` and ends after it.
9191
If you just need the line number of a frame, use :c:func:`PyFrame_GetLineNumber` instead.
9292
93-
For efficiently iterating over the line numbers in a code object, use `the API described in PEP 626
94-
<https://peps.python.org/pep-0626/#out-of-process-debuggers-and-profilers>`_.
93+
For efficiently iterating over the line numbers in a code object, use :pep:`the API described in PEP 626
94+
<0626#out-of-process-debuggers-and-profilers>`.
9595
9696
.. c:function:: int PyCode_Addr2Location(PyObject *co, int byte_offset, int *start_line, int *start_column, int *end_line, int *end_column)
9797

_sources/c-api/refcounting.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ of Python objects.
5959
``NULL``, use :c:func:`Py_XINCREF`.
6060
6161
Do not expect this function to actually modify *o* in any way.
62-
For at least `some objects <https://peps.python.org/pep-0683/>`_,
62+
For at least :pep:`some objects <0683>`,
6363
this function has no effect.
6464
6565
.. versionchanged:: 3.12
@@ -125,7 +125,7 @@ of Python objects.
125125
use :c:func:`Py_XDECREF`.
126126
127127
Do not expect this function to actually modify *o* in any way.
128-
For at least `some objects <https://peps.python.org/pep-0683/>`_,
128+
For at least :pep:`some objects <683>`,
129129
this function has no effect.
130130
131131
.. warning::

_sources/faq/design.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ Can Python be compiled to machine code, C or some other language?
328328
-----------------------------------------------------------------
329329

330330
`Cython <https://cython.org/>`_ compiles a modified version of Python with
331-
optional annotations into C extensions. `Nuitka <https://www.nuitka.net/>`_ is
331+
optional annotations into C extensions. `Nuitka <https://nuitka.net/>`_ is
332332
an up-and-coming compiler of Python into C++ code, aiming to support the full
333333
Python language.
334334

@@ -345,7 +345,7 @@ to perform a garbage collection, obtain debugging statistics, and tune the
345345
collector's parameters.
346346

347347
Other implementations (such as `Jython <https://www.jython.org>`_ or
348-
`PyPy <https://www.pypy.org>`_), however, can rely on a different mechanism
348+
`PyPy <https://pypy.org>`_), however, can rely on a different mechanism
349349
such as a full-blown garbage collector. This difference can cause some
350350
subtle porting problems if your Python code depends on the behavior of the
351351
reference counting implementation.

_sources/faq/general.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,8 @@ releases.
311311
The latest stable releases can always be found on the `Python download page
312312
<https://www.python.org/downloads/>`_. There are two production-ready versions
313313
of Python: 2.x and 3.x. The recommended version is 3.x, which is supported by
314-
most widely used libraries. Although 2.x is still widely used, `it is not
315-
maintained anymore <https://peps.python.org/pep-0373/>`_.
314+
most widely used libraries. Although 2.x is still widely used, :pep:`it is not
315+
maintained anymore <0373>`.
316316

317317
How many people are using Python?
318318
---------------------------------

_sources/library/ast.rst.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2060,8 +2060,7 @@ Function and class definitions
20602060
* ``name`` is a raw string for the class name
20612061
* ``bases`` is a list of nodes for explicitly specified base classes.
20622062
* ``keywords`` is a list of :class:`.keyword` nodes, principally for 'metaclass'.
2063-
Other keywords will be passed to the metaclass, as per `PEP-3115
2064-
<https://peps.python.org/pep-3115/>`_.
2063+
Other keywords will be passed to the metaclass, as per :pep:`3115`.
20652064
* ``body`` is a list of nodes representing the code within the class
20662065
definition.
20672066
* ``decorator_list`` is a list of nodes, as in :class:`FunctionDef`.

_sources/library/ctypes.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function call fails.
5151

5252

5353
Here are some examples for Windows. Note that ``msvcrt`` is the MS standard C
54-
library containing most standard C functions, and uses the cdecl calling
54+
library containing most standard C functions, and uses the ``cdecl`` calling
5555
convention::
5656

5757
>>> from ctypes import *

_sources/library/functools.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ The :mod:`functools` module defines the following functions:
218218
cache. See :ref:`faq-cache-method-calls`
219219

220220
An `LRU (least recently used) cache
221-
<https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)>`_
221+
<https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_Recently_Used_(LRU)>`_
222222
works best when the most recent calls are the best predictors of upcoming
223223
calls (for example, the most popular articles on a news server tend to
224224
change each day). The cache's size limit assures that the cache does not

_sources/library/hashlib.rst.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ on the hash function used in digital signatures.
653653
by the signer.
654654

655655
(`NIST SP-800-106 "Randomized Hashing for Digital Signatures"
656-
<https://csrc.nist.gov/publications/detail/sp/800-106/archive/2009-02-25>`_)
656+
<https://csrc.nist.gov/pubs/sp/800/106/final>`_)
657657

658658
In BLAKE2 the salt is processed as a one-time input to the hash function during
659659
initialization, rather than as an input to each compression function.
@@ -807,8 +807,8 @@ Domain Dedication 1.0 Universal:
807807
.. _NIST-SP-800-132: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf
808808
.. _stackexchange pbkdf2 iterations question: https://security.stackexchange.com/questions/3959/recommended-of-iterations-when-using-pbkdf2-sha256/
809809
.. _Attacks on cryptographic hash algorithms: https://en.wikipedia.org/wiki/Cryptographic_hash_function#Attacks_on_cryptographic_hash_algorithms
810-
.. _the FIPS 180-4 standard: https://csrc.nist.gov/publications/detail/fips/180/4/final
811-
.. _the FIPS 202 standard: https://csrc.nist.gov/publications/detail/fips/202/final
810+
.. _the FIPS 180-4 standard: https://csrc.nist.gov/pubs/fips/180-4/upd1/final
811+
.. _the FIPS 202 standard: https://csrc.nist.gov/pubs/fips/202/final
812812
.. _HACL\* project: https://github.com/hacl-star/hacl-star
813813

814814

@@ -825,7 +825,7 @@ Domain Dedication 1.0 Universal:
825825
https://nvlpubs.nist.gov/nistpubs/fips/nist.fips.180-4.pdf
826826
The FIPS 180-4 publication on Secure Hash Algorithms.
827827

828-
https://csrc.nist.gov/publications/detail/fips/202/final
828+
https://csrc.nist.gov/pubs/fips/202/final
829829
The FIPS 202 publication on the SHA-3 Standard.
830830

831831
https://www.blake2.net/

_sources/library/http.cookiejar.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ The following classes are provided:
137137
The Netscape protocol with the bugs fixed. Uses :mailheader:`Set-Cookie2` in
138138
place of :mailheader:`Set-Cookie`. Not widely used.
139139

140-
http://kristol.org/cookie/errata.html
140+
https://kristol.org/cookie/errata.html
141141
Unfinished errata to :rfc:`2965`.
142142

143143
:rfc:`2964` - Use of HTTP State Management

0 commit comments

Comments
 (0)