Skip to content

Commit 098273f

Browse files
committed
update doc
1 parent c753306 commit 098273f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/c-api/intro.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@ assignments, scope rules, and argument passing), it is only fitting that they
236236
should be represented by a single C type. Almost all Python objects live on the
237237
heap: you never declare an automatic or static variable of type
238238
:c:type:`PyObject`, only pointer variables of type :c:type:`PyObject*` can be
239-
declared. The sole exception are the type objects; since these must never be
240-
deallocated, they are typically static :c:type:`PyTypeObject` objects.
239+
declared. The sole exception are the type objects; they may be static
240+
:c:type:`PyTypeObject` objects.
241241

242242
All Python objects (even Python integers) have a :dfn:`type` and a
243243
:dfn:`reference count`. An object's type determines what kind of object it is

0 commit comments

Comments
 (0)