From 1d7d580d0edc2884a32a8592f2f3a098d8397740 Mon Sep 17 00:00:00 2001 From: Andrew Kuchling Date: Thu, 20 Jun 2013 21:17:41 -0400 Subject: Closes #18272: use 'builtins' for 3.3 instead of __builtin__ --- Doc/library/imp.rst | 2 +- Doc/library/itertools.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst index 7d4bf4f..af98489 100644 --- a/Doc/library/imp.rst +++ b/Doc/library/imp.rst @@ -158,7 +158,7 @@ This module provides an interface to the mechanisms used to implement the cache = {} It is legal though generally not very useful to reload built-in or dynamically - loaded modules, except for :mod:`sys`, :mod:`__main__` and :mod:`__builtin__`. + loaded modules, except for :mod:`sys`, :mod:`__main__` and :mod:`builtins`. In many cases, however, extension modules are not designed to be initialized more than once, and may fail in arbitrary ways when reloaded. diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 7099fa0..a0745d7 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -762,7 +762,7 @@ which incur interpreter overhead. """ Call a function repeatedly until an exception is raised. Converts a call-until-exception interface to an iterator interface. - Like __builtin__.iter(func, sentinel) but uses an exception instead + Like builtins.iter(func, sentinel) but uses an exception instead of a sentinel to end the loop. Examples: -- cgit v0.12