(a_type, dataclasses)
| 754 | |
| 755 | |
| 756 | def _is_initvar(a_type, dataclasses): |
| 757 | # The module we're checking against is the module we're |
| 758 | # currently in (dataclasses.py). |
| 759 | return (a_type is dataclasses.InitVar |
| 760 | or type(a_type) is dataclasses.InitVar) |
| 761 | |
| 762 | def _is_kw_only(a_type, dataclasses): |
| 763 | return a_type is dataclasses.KW_ONLY |
no outgoing calls
no test coverage detected
searching dependent graphs…