MCPcopy Index your code
hub / github.com/nodejs/node / Section

Class Section

tools/test.py:1303–1312  ·  view source on GitHub ↗

A section of the configuration file. Sections are enabled or disabled prior to running the tests, based on their conditions

Source from the content-addressed store, hash-verified

1301
1302
1303class Section(object):
1304 """A section of the configuration file. Sections are enabled or
1305 disabled prior to running the tests, based on their conditions"""
1306
1307 def __init__(self, condition):
1308 self.condition = condition
1309 self.rules = [ ]
1310
1311 def AddRule(self, rule):
1312 self.rules.append(rule)
1313
1314
1315class Rule(object):

Callers 1

ReadConfigurationIntoFunction · 0.85

Calls

no outgoing calls

Tested by 1

ReadConfigurationIntoFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…