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:
parent
140cb80ff7
commit
83b9bbf743
|
@ -1 +0,0 @@
|
|||
allmydata.util.namespace
|
|
@ -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
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
# Keep these sorted alphabetically, to reduce merge conflicts:
|
||||
PORTED_MODULES = [
|
||||
"allmydata.util.humanreadable",
|
||||
"allmydata.util.namespace",
|
||||
]
|
||||
|
||||
PORTED_TEST_MODULES = [
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
"""
|
||||
This module has been ported to Python 3.
|
||||
"""
|
||||
|
||||
class Namespace(object):
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue