@@ -36,7 +36,7 @@ \section{Arithmetic conversions}
3636 is necessary.
3737\end {itemize }
3838
39- Some additional rules apply for certain operators (e.g. a string left
39+ Some additional rules apply for certain operators (e.g., a string left
4040argument to the `\% ' operator). Extensions can define their own
4141coercions.
4242\section {Atoms }
@@ -216,7 +216,7 @@ \subsection{String conversions}
216216(In particular, converting a string adds quotes around it and converts
217217`` funny'' characters to escape sequences that are safe to print.)
218218
219- It is illegal to attempt to convert recursive objects (e.g. lists or
219+ It is illegal to attempt to convert recursive objects (e.g., lists or
220220dictionaries that contain a reference to themselves, directly or
221221indirectly.)
222222\obindex {recursive}
@@ -248,7 +248,7 @@ \subsection{Attribute references}
248248\end {verbatim }
249249
250250The primary must evaluate to an object of a type that supports
251- attribute references, e.g. a module or a list. This object is then
251+ attribute references, e.g., a module or a list. This object is then
252252asked to produce the attribute whose name is the identifier. If this
253253attribute is not available, the exception
254254\exception {AttributeError}\exindex {AttributeError} is raised.
@@ -361,7 +361,7 @@ \subsection{Slicings}
361361\subsection {Calls } \label {calls }
362362\index {call}
363363
364- A call calls a callable object (e.g. a function) with a possibly empty
364+ A call calls a callable object (e.g., a function) with a possibly empty
365365series of arguments:
366366\obindex {callable}
367367
@@ -567,7 +567,7 @@ \section{Binary arithmetic operations}
567567division of the first argument by the second. The numeric arguments
568568are first converted to a common type. A zero right argument raises
569569the \exception {ZeroDivisionError} exception. The arguments may be floating
570- point numbers, e.g. \code {3.14\% 0.7} equals \code {0.34} (since
570+ point numbers, e.g., \code {3.14\% 0.7} equals \code {0.34} (since
571571\code {3.14} equals \code {4*0.7 + 0.34}.) The modulo operator always
572572yields a result with the same sign as its second operand (or zero);
573573the absolute value of the result is strictly smaller than the second
@@ -663,7 +663,7 @@ \section{Comparisons}
663663
664664Comparisons yield integer values: \code {1} for true, \code {0} for false.
665665
666- Comparisons can be chained arbitrarily, e.g. \code {x < y <= z} is
666+ Comparisons can be chained arbitrarily, e.g., \code {x < y <= z} is
667667equivalent to \code {x < y and y <= z}, except that \code {y} is
668668evaluated only once (but in both cases \code {z} is not evaluated at all
669669when \code {x < y} is found to be false).
@@ -789,7 +789,7 @@ \section{Boolean operations} \label{Booleans}
789789replaced by a default value if it is empty, the expression
790790\code {s or 'foo' } yields the desired value. Because \keyword {not} has to
791791invent a value anyway, it does not bother to return a value of the
792- same type as its argument, so e.g. \code {not 'foo' } yields \code {0},
792+ same type as its argument, so e.g., \code {not 'foo' } yields \code {0},
793793not \code {''}.)
794794
795795Lambda forms (lambda expressions) have the same syntactic position as
0 commit comments