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
34211e91
Commit
34211e91
authored
Oct 04, 2008
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#4041: don't refer to removed and outdated modules.
parent
e6555ddb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
Doc/library/functions.rst
Doc/library/functions.rst
+2
-4
No files found.
Doc/library/functions.rst
View file @
34211e91
...
...
@@ -24,10 +24,8 @@ available. They are listed here in alphabetical order.
The
function
is
invoked
by
the
:
keyword
:`
import
`
statement
.
It
mainly
exists
so
that
you
can
replace
it
with
another
function
that
has
a
compatible
interface
,
in
order
to
change
the
semantics
of
the
:
keyword
:`
import
`
statement
.
For
examples
of
why
and
how
you
would
do
this
,
see
the
standard
library
modules
:
mod
:`
ihooks
`
and
:
mod
:`
rexec
`.
See
also
the
built
-
in
module
:
mod
:`
imp
`,
which
defines
some
useful
operations
out
of
which
you
can
build
your
own
:
func
:`
__import__
`
function
.
See
the
built
-
in
module
:
mod
:`
imp
`,
which
defines
some
useful
operations
out
of
which
you
can
build
your
own
:
func
:`
__import__
`
function
.
For
example
,
the
statement
``
import
spam
``
results
in
the
following
call
:
``
__import__
(
'spam'
,
globals
(),
locals
(),
[],
-
1
)``;
the
statement
...
...
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