Skip to content

Commit 7a29568

Browse files
authored
Don't make redundant copies of the DFA (#2763)
1 parent 799f76f commit 7a29568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/blib2to3/pgen2/parse.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def stack_copy(
5454
stack: List[Tuple[DFAS, int, RawNode]]
5555
) -> List[Tuple[DFAS, int, RawNode]]:
5656
"""Nodeless stack copy."""
57-
return [(copy.deepcopy(dfa), label, DUMMY_NODE) for dfa, label, _ in stack]
57+
return [(dfa, label, DUMMY_NODE) for dfa, label, _ in stack]
5858

5959

6060
class Recorder:

0 commit comments

Comments
 (0)