this repo has no description

authored by

Max Bernstein and committed by
GitHub
cf8ebe02 1ab17697

+1 -2
+1 -2
db.py
··· 86 86 cp = self.CROSS_JOIN(a, b) 87 87 rows = [] 88 88 for aRow in a.rows: 89 - cpa = [cpr for cpr in cp.rows if aRow in cpr["_tableRows"]] 90 - match = [cpr for cpr in cpa if pred(cpr)] 89 + match = [cpr for cpr in cp.rows if aRow in cpr["_tableRows"] and pred(cpr)] 91 90 if match: 92 91 rows.extend(match) 93 92 else: