@@ -34,7 +34,7 @@ represented by objects.)
3434
3535 Every object has an identity, a type and a value. An object's *identity * never
3636changes once it has been created; you may think of it as the object's address in
37- memory. The ' :keyword: `is `' operator compares the identity of two objects; the
37+ memory. The :keyword: `is ` operator compares the identity of two objects; the
3838:func: `id ` function returns an integer representing its identity.
3939
4040.. impl-detail ::
@@ -81,16 +81,16 @@ are still reachable.
8181
8282Note that the use of the implementation's tracing or debugging facilities may
8383keep objects alive that would normally be collectable. Also note that catching
84- an exception with a ' :keyword: `try `...\ :keyword: `except `' statement may keep
84+ an exception with a :keyword: `try `...\ :keyword: `except ` statement may keep
8585objects alive.
8686
8787Some objects contain references to "external" resources such as open files or
8888windows. It is understood that these resources are freed when the object is
8989garbage-collected, but since garbage collection is not guaranteed to happen,
9090such objects also provide an explicit way to release the external resource,
9191usually a :meth: `!close ` method. Programs are strongly recommended to explicitly
92- close such objects. The ' :keyword: `try `...\ :keyword: `finally `' statement
93- and the ' :keyword: `with `' statement provide convenient ways to do this.
92+ close such objects. The :keyword: `try `...\ :keyword: `finally ` statement
93+ and the :keyword: `with ` statement provide convenient ways to do this.
9494
9595.. index :: single: container
9696
0 commit comments