Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Pull in main
  • Loading branch information
erlend-aasland committed May 20, 2023
commit 3a0207307c7069dfc2e94215fc791659cc8941d7
3 changes: 2 additions & 1 deletion Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2090,7 +2090,7 @@ def __init__(
'impl_definition': d('block'),
}

self.destination_buffers_stack: list[BufferSeries] = []
self.destination_buffers_stack: list[Any] = []
Comment thread
erlend-aasland marked this conversation as resolved.
Outdated
self.ifndef_symbols: set[str] = set()

self.presets: dict[str, Any] = {}
Comment thread
erlend-aasland marked this conversation as resolved.
Outdated
Expand Down Expand Up @@ -4220,6 +4220,7 @@ def dedent(self, line):


ParserDict = dict[str, "DSLParser"]
StateKeeper = Callable[[str | None], None]

class DSLParser:
def __init__(self, clinic: Clinic) -> None:
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.