[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.
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index c6c7160..0bcfbb1 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -1653,7 +1653,7 @@
 ''''''''''''''''''''''''''''''''
 
 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