Option C Tools
Loading...
Searching...
No Matches
multiline_sig.py
Go to the documentation of this file.
1#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3# oct/tests/tests_linter/fixtures/multiline_sig.py
4
5"""
6Purpose
7-------
8Fixture demonstrating correct func = "..." pattern with a multi-line
9function signature.
10
11Responsibilities
12----------------
13- Provide a compliant example with a long def split across lines.
14
15Diagnostics
16-----------
17Domain: TEST
18L2: lifecycle events
19L3: semantic details
20L4: deep tracing
21
22Contracts
23---------
24Inputs: none
25Outputs: none
26"""
27
28from oc_diagnostics import _dbg
29
30
32 source,
33 target,
34 verbose=False,
35):
36 func = "process_data"
37 _dbg("L3", "Processing data", domain="TEST", func=func)
38 return True
process_data(source, target, verbose=False)