(lines: string[], subject: PyExperimentalSubject, indent = "")
| 679 | } |
| 680 | |
| 681 | function pushPyExperimentalComment(lines: string[], subject: PyExperimentalSubject, indent = ""): void { |
| 682 | lines.push(pyExperimentalComment(subject, indent)); |
| 683 | } |
| 684 | |
| 685 | function pushPyExperimentalApiGroupComment(lines: string[]): void { |
| 686 | lines.push("# Experimental: this API group is experimental and may change or be removed."); |
no test coverage detected
searching dependent graphs…