fix from carl for wtsd, more tweaks to everleaf regexes

This commit is contained in:
Eric Blade
2010-07-31 17:24:06 -04:00
parent 0e4be93e50
commit e8d39711dd
2 changed files with 12 additions and 9 deletions
+4 -1
View File
@@ -290,7 +290,10 @@ class DerivedStats():
# print "p_actions:", self.pfba(actions), "p_folds:", self.pfba(actions, l=('folds',)), "alliners:", alliners
# pas = set.union(self.pfba(actions) - self.pfba(actions, l=('folds',)), alliners)
p_in = set(x[1] for x in hand.players)
# hand.players includes people that are sitting out on some sites.
# Those that posted an ante should have been deal cards.
p_in = set([x[0] for x in hand.actions['BLINDSANTES']])
for (i, street) in enumerate(hand.actionStreets):
actions = hand.actions[street]
p_in = p_in - self.pfba(actions, l=('folds',))