Switch definitely to _python3.py for listing modules, but also note if a module

has been ported in its docstring.
This commit is contained in:
Itamar Turner-Trauring 2020-07-03 13:28:36 -04:00
parent 140cb80ff7
commit 83b9bbf743
5 changed files with 16 additions and 2 deletions

View File

@ -1 +0,0 @@
allmydata.util.namespace

View File

@ -1,4 +1,9 @@
"""Tests for allmydata.util.humanreadable."""
"""
Tests for allmydata.util.humanreadable.
This module has been ported to Python 3.
"""
from __future__ import unicode_literals
from __future__ import absolute_import
from __future__ import division

View File

@ -3,6 +3,7 @@
# Keep these sorted alphabetically, to reduce merge conflicts:
PORTED_MODULES = [
"allmydata.util.humanreadable",
"allmydata.util.namespace",
]
PORTED_TEST_MODULES = [

View File

@ -1,3 +1,9 @@
"""
Utilities for turning objects into human-readable strings.
This module has been ported to Python 3.
"""
from __future__ import division
from __future__ import absolute_import
from __future__ import print_function

View File

@ -1,3 +1,6 @@
"""
This module has been ported to Python 3.
"""
class Namespace(object):
pass