MCPcopy Create free account
hub / github.com/numpy/numpy / HaveCommentLines

Function HaveCommentLines

numpy/linalg/lapack_lite/clapack_scrub.py:175–185  ·  view source on GitHub ↗
(line)

Source from the content-addressed store, hash-verified

173 return SourceLines
174
175 def HaveCommentLines(line):
176 if isBlank(line):
177 blanks.add('\n')
178 return HaveBlankLines
179 elif isCommentLine(line):
180 comments.add(line)
181 return HaveCommentLines
182 else:
183 comments.flushTo(lines)
184 lines.add(line)
185 return SourceLines
186
187 def HaveBlankLines(line):
188 if isBlank(line):

Callers

nothing calls this directly

Calls 4

isCommentLineFunction · 0.85
isBlankFunction · 0.70
addMethod · 0.45
flushToMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…