Skip to content

Commit 62be9a0

Browse files
committed
Fix docs/comments to refer to the correct version number
1 parent 1e3c96c commit 62be9a0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/pasteurize.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ refer to stdlib modules (as well as builtins) under their Py3 names.
3131

3232
Note also that the ``configparser`` module is a special case; there is a full
3333
backport available on PyPI (https://pypi.python.org/pypi/configparser), so, as
34-
of v0.18.0, ``python-future`` no longer provides a ``configparser`` package
34+
of v0.16.0, ``python-future`` no longer provides a ``configparser`` package
3535
alias. To use the resulting code on Py2, install the ``configparser`` backport
3636
with ``pip install configparser`` or by adding it to your ``requirements.txt``
3737
file.

docs/standard_library_imports.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ complete list is here::
7777
import _markupbase
7878
import _thread
7979

80-
Note that, as of v0.18.0, ``python-future`` no longer includes an alias for the
80+
Note that, as of v0.16.0, ``python-future`` no longer includes an alias for the
8181
``configparser`` module because a full backport exists (see https://pypi.python.org/pypi/configparser).
8282

8383
.. _list-standard-library-refactored:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
if sys.version_info[:2] < (3, 0):
5959
PACKAGES += [
6060
"builtins",
61-
# "configparser", # removed in v0.18.0
61+
# "configparser", # removed in v0.16.0
6262
"copyreg",
6363
"html",
6464
"http",

src/future/standard_library/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ class exclude_local_folder_imports(object):
738738
A context-manager that prevents standard library modules like configparser
739739
from being imported from the local python-future source folder on Py3.
740740
741-
(This was need prior to v0.18.0 because the presence of a configparser
741+
(This was need prior to v0.16.0 because the presence of a configparser
742742
folder would otherwise have prevented setuptools from running on Py3. Maybe
743743
it's not needed any more?)
744744
"""

tests/test_future/test_standard_library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def test_import_failure_from_module(self):
271271
with self.assertRaises(CalledProcessError):
272272
output = self._run_test_script('importme1.py')
273273

274-
# Disabled since v0.18.0:
274+
# Disabled since v0.16.0:
275275
# def test_configparser(self):
276276
# import configparser
277277

0 commit comments

Comments
 (0)