Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f862dc53
Commit
f862dc53
authored
Jun 20, 2013
by
Andrew Kuchling
Browse files
Options
Browse Files
Download
Plain Diff
Merge from 3.3
parents
854ffcb6
1d7d580d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Doc/library/imp.rst
Doc/library/imp.rst
+1
-1
Doc/library/itertools.rst
Doc/library/itertools.rst
+1
-1
No files found.
Doc/library/imp.rst
View file @
f862dc53
...
...
@@ -165,7 +165,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.
...
...
Doc/library/itertools.rst
View file @
f862dc53
...
...
@@ -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:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment