Skip to content

Commit

Permalink
gh-112213: Add missing declaration of target_critical_section (gh-112374
Browse files Browse the repository at this point in the history
)


Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
  • Loading branch information
corona10 and AlexWaygood committed Nov 24, 2023
1 parent e9d1360 commit 4ec849b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -5135,9 +5135,11 @@ class DSLParser:
indent: IndentStack
kind: FunctionKind
coexist: bool
forced_text_signature: str | None
parameter_continuation: str
preserve_output: bool
critical_section: bool
target_critical_section: list[str]
from_version_re = re.compile(r'([*/]) +\[from +(.+)\]')

def __init__(self, clinic: Clinic) -> None:
Expand Down Expand Up @@ -5169,11 +5171,11 @@ def reset(self) -> None:
self.indent = IndentStack()
self.kind = CALLABLE
self.coexist = False
self.forced_text_signature: str | None = None
self.forced_text_signature = None
self.parameter_continuation = ''
self.preserve_output = False
self.critical_section = False
self.target_critical_section: list[str] = []
self.target_critical_section = []

def directive_version(self, required: str) -> None:
global version
Expand Down

0 comments on commit 4ec849b

Please sign in to comment.