@@ -414,8 +414,8 @@ ABC hierarchy::
414414
415415 .. versionadded :: 3.4
416416
417- .. versionchanged :: 3.5
418- Starting in Python 3.6, this method will not be optional when
417+ .. versionchanged :: 3.6
418+ This method is no longer optional when
419419 :meth: `exec_module ` is defined.
420420
421421 .. method :: exec_module(module)
@@ -1273,8 +1273,7 @@ import, then you should use :func:`importlib.util.find_spec`.
12731273Importing a source file directly
12741274''''''''''''''''''''''''''''''''
12751275
1276- To import a Python source file directly, use the following recipe
1277- (Python 3.5 and newer only)::
1276+ To import a Python source file directly, use the following recipe::
12781277
12791278 import importlib.util
12801279 import sys
@@ -1355,9 +1354,7 @@ Import itself is implemented in Python code, making it possible to
13551354expose most of the import machinery through importlib. The following
13561355helps illustrate the various APIs that importlib exposes by providing an
13571356approximate implementation of
1358- :func: `importlib.import_module ` (Python 3.4 and newer for the importlib usage,
1359- Python 3.6 and newer for other parts of the code).
1360- ::
1357+ :func: `importlib.import_module `::
13611358
13621359 import importlib.util
13631360 import sys
0 commit comments