@@ -181,22 +181,22 @@ Glossary
181181 not expressions.
182182
183183 extension module
184- A module written in C or C++, using Python's C API to interact with the core and
185- with user code.
184+ A module written in C or C++, using Python's C API to interact with the
185+ core and with user code.
186186
187187 file object
188188 An object exposing a file-oriented API (with methods such as
189- :meth: `read() ` or :meth: `write() `) to an underlying resource.
190- Depending on the way it was created, a file object can mediate access
191- to a real on-disk file or to another other type of storage or
192- communication device (for example standard input/output, in-memory
193- buffers, sockets, pipes, etc.). File objects are also called
194- :dfn: `file-like objects ` or :dfn: ` streams `.
195-
196- There are actually three categories of file objects: raw binary
197- files, buffered binary files and text files. Their interfaces are
198- defined in the :mod: `io ` module. The canonical way to create a
199- file object is by using the :func: `open ` function.
189+ :meth: `read() ` or :meth: `write() `) to an underlying resource. Depending
190+ on the way it was created, a file object can mediate access to a real
191+ on-disk file or to another other type of storage or communication device
192+ (for example standard input/output, in-memory buffers, sockets, pipes,
193+ etc.). File objects are also called :dfn: ` file-like objects ` or
194+ :dfn: `streams `.
195+
196+ There are actually three categories of file objects: raw binary files,
197+ buffered binary files and text files. Their interfaces are defined in the
198+ :mod: `io ` module. The canonical way to create a file object is by using
199+ the :func: `open ` function.
200200
201201 file-like object
202202 A synonym for :term: `file object `.
0 commit comments