X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d8fa8df0526de9c0968e0a3568008f58eae45364..84e22b75c6baeb231dee52b7bd086f547063e0e4:/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")