From b1f9e17c5fdf3fe690fc286de90e9e34e279f321 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sat, 8 Jul 2017 18:43:26 +0200 Subject: [PATCH] Not in docstring that the normalize method is not public, yet. --- parso/tree.py | 1 + 1 file changed, 1 insertion(+) diff --git a/parso/tree.py b/parso/tree.py index 5a63442..2a31ccf 100644 --- a/parso/tree.py +++ b/parso/tree.py @@ -164,6 +164,7 @@ class NodeOrLeaf(object): def _will_be_normalize(self, normalizer_config=None): """ + TODO this is not public, yet. The returned code will be normalized, e.g. PEP8 for Python. """ normalizer = self._get_normalizer(normalizer_config)