File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ This module provides an interface to the mechanisms used to implement the
165165 cache = {}
166166
167167 It is legal though generally not very useful to reload built-in or dynamically
168- loaded modules, except for :mod: `sys `, :mod: `__main__ ` and :mod: `__builtin__ `.
168+ loaded modules, except for :mod: `sys `, :mod: `__main__ ` and :mod: `builtins `.
169169 In many cases, however, extension modules are not designed to be initialized
170170 more than once, and may fail in arbitrary ways when reloaded.
171171
Original file line number Diff line number Diff line change @@ -762,7 +762,7 @@ which incur interpreter overhead.
762762 """ Call a function repeatedly until an exception is raised.
763763
764764 Converts a call-until-exception interface to an iterator interface.
765- Like __builtin__ .iter(func, sentinel) but uses an exception instead
765+ Like builtins .iter(func, sentinel) but uses an exception instead
766766 of a sentinel to end the loop.
767767
768768 Examples:
You can’t perform that action at this time.
0 commit comments