MCPcopy Index your code
hub / github.com/RetiredWizard/PyDOS / calcWildCardLen

Function calcWildCardLen

PyDOS.py:61–69  ·  view source on GitHub ↗
(wldCLen,recursiveFail)

Source from the content-addressed store, hash-verified

59 return False
60
61def calcWildCardLen(wldCLen,recursiveFail):
62 wldCLen += 1
63 if not recursiveFail and wldCLen < 115:
64 try:
65 (wldCLen,recursiveFail) = calcWildCardLen(wldCLen,recursiveFail)
66 except:
67 recursiveFail = True
68
69 return (wldCLen,recursiveFail)
70
71def PyDOS():
72

Callers 1

PyDOSFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected