Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 48e9a9f

Browse files
committed
Deploying to gh-pages from @ 8fef8f1 🚀
1 parent 286194b commit 48e9a9f

File tree

550 files changed

+1941
-1277
lines changed

Some content is hidden

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

550 files changed

+1941
-1277
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: bcfab632be89b7fcab444e3909aa5f89
3+
config: 6cc028ef89d6f2efd5016d24f020bd1d
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

‎_sources/c-api/frame.rst.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ See also :ref:`Reflection <reflection>`.
5050
5151
.. c:function:: PyObject* PyFrame_GetBuiltins(PyFrameObject *frame)
5252
53-
Get the *frame*'s ``f_builtins`` attribute.
53+
Get the *frame*'s :attr:`~frame.f_builtins` attribute.
5454
5555
Return a :term:`strong reference`. The result cannot be ``NULL``.
5656
@@ -81,7 +81,7 @@ See also :ref:`Reflection <reflection>`.
8181
8282
.. c:function:: PyObject* PyFrame_GetGlobals(PyFrameObject *frame)
8383
84-
Get the *frame*'s ``f_globals`` attribute.
84+
Get the *frame*'s :attr:`~frame.f_globals` attribute.
8585
8686
Return a :term:`strong reference`. The result cannot be ``NULL``.
8787
@@ -90,7 +90,7 @@ See also :ref:`Reflection <reflection>`.
9090
9191
.. c:function:: int PyFrame_GetLasti(PyFrameObject *frame)
9292
93-
Get the *frame*'s ``f_lasti`` attribute.
93+
Get the *frame*'s :attr:`~frame.f_lasti` attribute.
9494
9595
Returns -1 if ``frame.f_lasti`` is ``None``.
9696
@@ -120,7 +120,7 @@ See also :ref:`Reflection <reflection>`.
120120
121121
.. c:function:: PyObject* PyFrame_GetLocals(PyFrameObject *frame)
122122
123-
Get the *frame*'s ``f_locals`` attribute (:class:`dict`).
123+
Get the *frame*'s :attr:`~frame.f_locals` attribute (:class:`dict`).
124124
125125
Return a :term:`strong reference`.
126126

‎_sources/c-api/init.rst.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1909,7 +1909,8 @@ Python-level trace functions in previous versions.
19091909
19101910
The value passed as the *what* parameter to a :c:type:`Py_tracefunc` function
19111911
(but not a profiling function) when a line-number event is being reported.
1912-
It may be disabled for a frame by setting :attr:`f_trace_lines` to *0* on that frame.
1912+
It may be disabled for a frame by setting :attr:`~frame.f_trace_lines` to
1913+
*0* on that frame.
19131914
19141915
19151916
.. c:var:: int PyTrace_RETURN
@@ -1941,7 +1942,7 @@ Python-level trace functions in previous versions.
19411942
The value for the *what* parameter to :c:type:`Py_tracefunc` functions (but not
19421943
profiling functions) when a new opcode is about to be executed. This event is
19431944
not emitted by default: it must be explicitly requested by setting
1944-
:attr:`f_trace_opcodes` to *1* on the frame.
1945+
:attr:`~frame.f_trace_opcodes` to *1* on the frame.
19451946
19461947
19471948
.. c:function:: void PyEval_SetProfile(Py_tracefunc func, PyObject *obj)

‎_sources/c-api/structures.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ Macro name C type Python type
592592
593593
(*): Zero-terminated, UTF8-encoded C string.
594594
With :c:macro:`!Py_T_STRING` the C representation is a pointer;
595-
with :c:macro:`!Py_T_STRING_INLINE` the string is stored directly
595+
with :c:macro:`!Py_T_STRING_INPLACE` the string is stored directly
596596
in the structure.
597597
598598
(**): String of length 1. Only ASCII is accepted.

0 commit comments

Comments
 (0)