Skip to content

Commit 11a75de

Browse files
committed
Deploying to gh-pages from @ 27ee90f 🚀
1 parent eee5cad commit 11a75de

File tree

567 files changed

+13360
-59816
lines changed

Some content is hidden

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

567 files changed

+13360
-59816
lines changed

_sources/c-api/arg.rst.txt

+23-11
Original file line numberDiff line numberDiff line change
@@ -229,12 +229,24 @@ There are three ways strings and buffers can be converted to C:
229229
Numbers
230230
-------
231231

232+
These formats allow representing Python numbers or single characters as C numbers.
233+
Formats that require :class:`int`, :class:`float` or :class:`complex` can
234+
also use the corresponding special methods :meth:`~object.__index__`,
235+
:meth:`~object.__float__` or :meth:`~object.__complex__` to convert
236+
the Python object to the required type.
237+
238+
For signed integer formats, :exc:`OverflowError` is raised if the value
239+
is out of range for the C type.
240+
For unsigned integer formats, no range checking is done --- the
241+
most significant bits are silently truncated when the receiving field is too
242+
small to receive the value.
243+
232244
``b`` (:class:`int`) [unsigned char]
233-
Convert a nonnegative Python integer to an unsigned tiny int, stored in a C
245+
Convert a nonnegative Python integer to an unsigned tiny integer, stored in a C
234246
:c:expr:`unsigned char`.
235247

236248
``B`` (:class:`int`) [unsigned char]
237-
Convert a Python integer to a tiny int without overflow checking, stored in a C
249+
Convert a Python integer to a tiny integer without overflow checking, stored in a C
238250
:c:expr:`unsigned char`.
239251

240252
``h`` (:class:`int`) [short int]
@@ -307,7 +319,7 @@ Other objects
307319

308320
.. _o_ampersand:
309321

310-
``O&`` (object) [*converter*, *anything*]
322+
``O&`` (object) [*converter*, *address*]
311323
Convert a Python object to a C variable through a *converter* function. This
312324
takes two arguments: the first is a function, the second is the address of a C
313325
variable (of arbitrary type), converted to :c:expr:`void *`. The *converter*
@@ -321,14 +333,20 @@ Other objects
321333
the conversion has failed. When the conversion fails, the *converter* function
322334
should raise an exception and leave the content of *address* unmodified.
323335

324-
If the *converter* returns ``Py_CLEANUP_SUPPORTED``, it may get called a
336+
.. c:macro:: Py_CLEANUP_SUPPORTED
337+
:no-typesetting:
338+
339+
If the *converter* returns :c:macro:`!Py_CLEANUP_SUPPORTED`, it may get called a
325340
second time if the argument parsing eventually fails, giving the converter a
326341
chance to release any memory that it had already allocated. In this second
327342
call, the *object* parameter will be ``NULL``; *address* will have the same value
328343
as in the original call.
329344

345+
Examples of converters: :c:func:`PyUnicode_FSConverter` and
346+
:c:func:`PyUnicode_FSDecoder`.
347+
330348
.. versionchanged:: 3.1
331-
``Py_CLEANUP_SUPPORTED`` was added.
349+
:c:macro:`!Py_CLEANUP_SUPPORTED` was added.
332350

333351
``p`` (:class:`bool`) [int]
334352
Tests the value passed in for truth (a boolean **p**\ redicate) and converts
@@ -344,12 +362,6 @@ Other objects
344362
in *items*. The C arguments must correspond to the individual format units in
345363
*items*. Format units for sequences may be nested.
346364

347-
It is possible to pass "long" integers (integers whose value exceeds the
348-
platform's :c:macro:`LONG_MAX`) however no proper range checking is done --- the
349-
most significant bits are silently truncated when the receiving field is too
350-
small to receive the value (actually, the semantics are inherited from downcasts
351-
in C --- your mileage may vary).
352-
353365
A few other characters have a meaning in a format string. These may not occur
354366
inside nested parentheses. They are:
355367

_sources/c-api/object.rst.txt

+7
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,13 @@ Object Protocol
493493
on failure. This is equivalent to the Python statement ``del o[key]``.
494494
495495
496+
.. c:function:: int PyObject_DelItemString(PyObject *o, const char *key)
497+
498+
This is the same as :c:func:`PyObject_DelItem`, but *key* is
499+
specified as a :c:expr:`const char*` UTF-8 encoded bytes string,
500+
rather than a :c:expr:`PyObject*`.
501+
502+
496503
.. c:function:: PyObject* PyObject_Dir(PyObject *o)
497504
498505
This is equivalent to the Python expression ``dir(o)``, returning a (possibly

_sources/c-api/typeobj.rst.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ slot typedefs
355355
+-----------------------------+-----------------------------+----------------------+
356356
| :c:type:`newfunc` | .. line-block:: | :c:type:`PyObject` * |
357357
| | | |
358-
| | :c:type:`PyObject` * | |
358+
| | :c:type:`PyTypeObject` * | |
359359
| | :c:type:`PyObject` * | |
360360
| | :c:type:`PyObject` * | |
361361
+-----------------------------+-----------------------------+----------------------+
@@ -2618,7 +2618,7 @@ Slot Type typedefs
26182618
26192619
See :c:member:`~PyTypeObject.tp_free`.
26202620

2621-
.. c:type:: PyObject *(*newfunc)(PyObject *, PyObject *, PyObject *)
2621+
.. c:type:: PyObject *(*newfunc)(PyTypeObject *, PyObject *, PyObject *)
26222622
26232623
See :c:member:`~PyTypeObject.tp_new`.
26242624

_sources/c-api/unicode.rst.txt

+27-8
Original file line numberDiff line numberDiff line change
@@ -786,33 +786,52 @@ Functions encoding to and decoding from the :term:`filesystem encoding and
786786
error handler` (:pep:`383` and :pep:`529`).
787787
788788
To encode file names to :class:`bytes` during argument parsing, the ``"O&"``
789-
converter should be used, passing :c:func:`PyUnicode_FSConverter` as the
789+
converter should be used, passing :c:func:`!PyUnicode_FSConverter` as the
790790
conversion function:
791791
792792
.. c:function:: int PyUnicode_FSConverter(PyObject* obj, void* result)
793793
794-
ParseTuple converter: encode :class:`str` objects -- obtained directly or
794+
:ref:`PyArg_Parse\* converter <arg-parsing>`: encode :class:`str` objects -- obtained directly or
795795
through the :class:`os.PathLike` interface -- to :class:`bytes` using
796796
:c:func:`PyUnicode_EncodeFSDefault`; :class:`bytes` objects are output as-is.
797-
*result* must be a :c:expr:`PyBytesObject*` which must be released when it is
798-
no longer used.
797+
*result* must be an address of a C variable of type :c:expr:`PyObject*`
798+
(or :c:expr:`PyBytesObject*`).
799+
On success, set the variable to a new :term:`strong reference` to
800+
a :ref:`bytes object <bytesobjects>` which must be released
801+
when it is no longer used and return a non-zero value
802+
(:c:macro:`Py_CLEANUP_SUPPORTED`).
803+
Embedded null bytes are not allowed in the result.
804+
On failure, return ``0`` with an exception set.
805+
806+
If *obj* is ``NULL``, the function releases a strong reference
807+
stored in the variable referred by *result* and returns ``1``.
799808
800809
.. versionadded:: 3.1
801810
802811
.. versionchanged:: 3.6
803812
Accepts a :term:`path-like object`.
804813
805814
To decode file names to :class:`str` during argument parsing, the ``"O&"``
806-
converter should be used, passing :c:func:`PyUnicode_FSDecoder` as the
815+
converter should be used, passing :c:func:`!PyUnicode_FSDecoder` as the
807816
conversion function:
808817
809818
.. c:function:: int PyUnicode_FSDecoder(PyObject* obj, void* result)
810819
811-
ParseTuple converter: decode :class:`bytes` objects -- obtained either
820+
:ref:`PyArg_Parse\* converter <arg-parsing>`: decode :class:`bytes` objects -- obtained either
812821
directly or indirectly through the :class:`os.PathLike` interface -- to
813822
:class:`str` using :c:func:`PyUnicode_DecodeFSDefaultAndSize`; :class:`str`
814-
objects are output as-is. *result* must be a :c:expr:`PyUnicodeObject*` which
815-
must be released when it is no longer used.
823+
objects are output as-is.
824+
*result* must be an address of a C variable of type :c:expr:`PyObject*`
825+
(or :c:expr:`PyUnicodeObject*`).
826+
On success, set the variable to a new :term:`strong reference` to
827+
a :ref:`Unicode object <unicodeobjects>` which must be released
828+
when it is no longer used and return a non-zero value
829+
(:c:macro:`Py_CLEANUP_SUPPORTED`).
830+
Embedded null characters are not allowed in the result.
831+
On failure, return ``0`` with an exception set.
832+
833+
If *obj* is ``NULL``, release the strong reference
834+
to the object referred to by *result* and return ``1``.
816835
817836
.. versionadded:: 3.2
818837

_sources/library/calendar.rst.txt

+48-3
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,33 @@ interpreted as prescribed by the ISO 8601 standard. Year 0 is 1 BC, year -1 is
3838
itself. This is the job of subclasses.
3939

4040

41-
:class:`Calendar` instances have the following methods:
41+
:class:`Calendar` instances have the following methods and attributes:
42+
43+
.. attribute:: firstweekday
44+
45+
The first weekday as an integer (0--6).
46+
47+
This property can also be set and read using
48+
:meth:`~Calendar.setfirstweekday` and
49+
:meth:`~Calendar.getfirstweekday` respectively.
50+
51+
.. method:: getfirstweekday()
52+
53+
Return an :class:`int` for the current first weekday (0--6).
54+
55+
Identical to reading the :attr:`~Calendar.firstweekday` property.
56+
57+
.. method:: setfirstweekday(firstweekday)
58+
59+
Set the first weekday to *firstweekday*, passed as an :class:`int` (0--6)
60+
61+
Identical to setting the :attr:`~Calendar.firstweekday` property.
4262

4363
.. method:: iterweekdays()
4464

4565
Return an iterator for the week day numbers that will be used for one
4666
week. The first value from the iterator will be the same as the value of
47-
the :attr:`firstweekday` property.
67+
the :attr:`~Calendar.firstweekday` property.
4868

4969

5070
.. method:: itermonthdates(year, month)
@@ -138,13 +158,32 @@ interpreted as prescribed by the ISO 8601 standard. Year 0 is 1 BC, year -1 is
138158

139159
:class:`TextCalendar` instances have the following methods:
140160

161+
162+
.. method:: formatday(theday, weekday, width)
163+
164+
Return a string representing a single day formatted with the given *width*.
165+
If *theday* is ``0``, return a string of spaces of
166+
the specified width, representing an empty day. The *weekday* parameter
167+
is unused.
168+
141169
.. method:: formatweek(theweek, w=0)
142170

143171
Return a single week in a string with no newline. If *w* is provided, it
144172
specifies the width of the date columns, which are centered. Depends
145173
on the first weekday as specified in the constructor or set by the
146174
:meth:`setfirstweekday` method.
147175

176+
.. method:: formatweekday(weekday, width)
177+
178+
Return a string representing the name of a single weekday formatted to
179+
the specified *width*. The *weekday* parameter is an integer representing
180+
the day of the week, where ``0`` is Monday and ``6`` is Sunday.
181+
182+
.. method:: formatweekheader(width)
183+
184+
Return a string containing the header row of weekday names, formatted
185+
with the given *width* for each column. The names depend on the locale
186+
settings and are padded to the specified width.
148187

149188
.. method:: formatmonth(theyear, themonth, w=0, l=0)
150189

@@ -154,6 +193,12 @@ interpreted as prescribed by the ISO 8601 standard. Year 0 is 1 BC, year -1 is
154193
on the first weekday as specified in the constructor or set by the
155194
:meth:`setfirstweekday` method.
156195

196+
.. method:: formatmonthname(theyear, themonth, width=0, withyear=True)
197+
198+
Return a string representing the month's name centered within the
199+
specified *width*. If *withyear* is ``True``, include the year in the
200+
output. The *theyear* and *themonth* parameters specify the year
201+
and month for the name to be formatted respectively.
157202

158203
.. method:: prmonth(theyear, themonth, w=0, l=0)
159204

@@ -445,7 +490,7 @@ The :mod:`calendar` module exports the following data attributes:
445490

446491
A sequence that represents the months of the year in the current locale. This
447492
follows normal convention of January being month number 1, so it has a length of
448-
13 and ``month_name[0]`` is the empty string.
493+
13 and ``month_name[0]`` is the empty string.
449494

450495
>>> import calendar
451496
>>> list(calendar.month_name)

_sources/library/collections.abc.rst.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ ABC Inherits from Abstract Methods Mi
146146

147147
:class:`Set` :class:`Collection` ``__contains__``, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``,
148148
``__iter__``, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``,
149-
``__len__`` ``__sub__``, ``__xor__``, and ``isdisjoint``
149+
``__len__`` ``__sub__``, ``__rsub__``, ``__xor__``, ``__rxor__``
150+
and ``isdisjoint``
150151

151152
:class:`MutableSet` :class:`Set` ``__contains__``, Inherited :class:`Set` methods and
152153
``__iter__``, ``clear``, ``pop``, ``remove``, ``__ior__``,
@@ -165,7 +166,7 @@ ABC Inherits from Abstract Methods Mi
165166
``__len__``
166167

167168

168-
:class:`MappingView` :class:`Sized` ``__len__``
169+
:class:`MappingView` :class:`Sized` ``__init__``, ``__len__`` and ``__repr__``
169170
:class:`ItemsView` :class:`MappingView`, ``__contains__``,
170171
:class:`Set` ``__iter__``
171172
:class:`KeysView` :class:`MappingView`, ``__contains__``,

_sources/library/decimal.rst.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ New contexts can also be created using the :class:`Context` constructor
10161016
described below. In addition, the module provides three pre-made contexts:
10171017

10181018

1019-
.. class:: BasicContext
1019+
.. data:: BasicContext
10201020

10211021
This is a standard context defined by the General Decimal Arithmetic
10221022
Specification. Precision is set to nine. Rounding is set to
@@ -1027,7 +1027,7 @@ described below. In addition, the module provides three pre-made contexts:
10271027
Because many of the traps are enabled, this context is useful for debugging.
10281028

10291029

1030-
.. class:: ExtendedContext
1030+
.. data:: ExtendedContext
10311031

10321032
This is a standard context defined by the General Decimal Arithmetic
10331033
Specification. Precision is set to nine. Rounding is set to
@@ -1040,7 +1040,7 @@ described below. In addition, the module provides three pre-made contexts:
10401040
presence of conditions that would otherwise halt the program.
10411041

10421042

1043-
.. class:: DefaultContext
1043+
.. data:: DefaultContext
10441044

10451045
This context is used by the :class:`Context` constructor as a prototype for new
10461046
contexts. Changing a field (such a precision) has the effect of changing the

_sources/library/email.policy.rst.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ added matters. To illustrate::
267267

268268
Handle a *defect* found on *obj*. When the email package calls this
269269
method, *defect* will always be a subclass of
270-
:class:`~email.errors.Defect`.
270+
:class:`~email.errors.MessageDefect`.
271271

272272
The default implementation checks the :attr:`raise_on_defect` flag. If
273273
it is ``True``, *defect* is raised as an exception. If it is ``False``
@@ -277,7 +277,7 @@ added matters. To illustrate::
277277
.. method:: register_defect(obj, defect)
278278

279279
Register a *defect* on *obj*. In the email package, *defect* will always
280-
be a subclass of :class:`~email.errors.Defect`.
280+
be a subclass of :class:`~email.errors.MessageDefect`.
281281

282282
The default implementation calls the ``append`` method of the ``defects``
283283
attribute of *obj*. When the email package calls :attr:`handle_defect`,

0 commit comments

Comments
 (0)