MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _eval_str

Method _eval_str

lib/sqlalchemy/testing/exclusions.py:384–391  ·  view source on GitHub ↗
(self, config, negate=False)

Source from the content-addressed store, hash-verified

382 return False
383
384 def _eval_str(self, config, negate=False):
385 if negate:
386 conjunction = " and "
387 else:
388 conjunction = " or "
389 return conjunction.join(
390 p._as_string(config, negate=negate) for p in self.predicates
391 )
392
393 def _negation_str(self, config):
394 if self.description is not None:

Callers 2

_negation_strMethod · 0.95
_as_stringMethod · 0.95

Calls 2

joinMethod · 0.45
_as_stringMethod · 0.45

Tested by

no test coverage detected