X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/3bfb66971f03da39ae1f4c98c30d55e60f63d33b..0ff718e1e2b434477bca134e6c8aa0f67c898cbc:/blib2to3/pgen2/grammar.py diff --git a/blib2to3/pgen2/grammar.py b/blib2to3/pgen2/grammar.py index aa025cf..d6f0fc2 100644 --- a/blib2to3/pgen2/grammar.py +++ b/blib2to3/pgen2/grammar.py @@ -90,7 +90,9 @@ class Grammar(object): def dump(self, filename): """Dump the grammar tables to a pickle file.""" - with tempfile.NamedTemporaryFile(dir=os.path.dirname(filename), delete=False) as f: + with tempfile.NamedTemporaryFile( + dir=os.path.dirname(filename), delete=False + ) as f: pickle.dump(self.__dict__, f, pickle.HIGHEST_PROTOCOL) os.replace(f.name, filename) @@ -109,8 +111,14 @@ class Grammar(object): Copy the grammar. """ new = self.__class__() - for dict_attr in ("symbol2number", "number2symbol", "dfas", "keywords", - "tokens", "symbol2label"): + for dict_attr in ( + "symbol2number", + "number2symbol", + "dfas", + "keywords", + "tokens", + "symbol2label", + ): setattr(new, dict_attr, getattr(self, dict_attr).copy()) new.labels = self.labels[:] new.states = self.states[:] @@ -121,6 +129,7 @@ class Grammar(object): def report(self): """Dump the grammar tables to standard output, for debugging.""" from pprint import pprint + print("s2n") pprint(self.symbol2number) print("n2s")