From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 5 Nov 2018 22:47:51 +0000 (-0800) Subject: [Docs] Fix required version of an example of importlib (GH-10118) X-Git-Tag: v3.6.8rc1~143 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47a940e83b2482d17c92deebf6b7c9be8cec979d;p=thirdparty%2FPython%2Fcpython.git [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. (cherry picked from commit 16c8a53490a22bd4fcde2efaf4694dd06ded882b) Co-authored-by: E Kawashima --- diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 760489ae5560..25055f7ce39c 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -1404,7 +1404,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