summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorE Kawashima <e-kwsm@users.noreply.github.com>2018-11-06 07:41:17 +0900
committerVictor Stinner <vstinner@redhat.com>2018-11-05 23:41:17 +0100
commit16c8a53490a22bd4fcde2efaf4694dd06ded882b (patch)
treedf3babcaadc0a8a6d49f8965eeb7ae75ecf7796c
parent570e371fd6e8615ece9b9e21fbe77149ebeb172e (diff)
downloadcpython-git-16c8a53490a22bd4fcde2efaf4694dd06ded882b.tar.gz
[Docs] Fix required version of an example of importlib (GH-10118)
ยง31.5.6.3. Importing a source file directly: `module_from_spec` is new in Python 3.5.
-rw-r--r--Doc/library/importlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index c6c7160a9d..0bcfbb1c72 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -1653,7 +1653,7 @@ Importing a source file directly
''''''''''''''''''''''''''''''''
To import a Python source file directly, use the following recipe
-(Python 3.4 and newer only)::
+(Python 3.5 and newer only)::
import importlib.util
import sys