File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ This module provides an interface to the mechanisms used to implement the
158158 cache = {}
159159
160160 It is legal though generally not very useful to reload built-in or dynamically
161- loaded modules, except for :mod: `sys `, :mod: `__main__ ` and :mod: `__builtin__ `.
161+ loaded modules, except for :mod: `sys `, :mod: `__main__ ` and :mod: `builtins `.
162162 In many cases, however, extension modules are not designed to be initialized
163163 more than once, and may fail in arbitrary ways when reloaded.
164164
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