Changeset 22 for holdemtable.py
- Timestamp:
- 02/04/08 08:53:57 (4 years ago)
- Files:
-
- 1 modified
-
holdemtable.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
holdemtable.py
r21 r22 138 138 hands.sort(cmp = lambda a,b: cmp(a[1],b[1])) 139 139 winner = hands.pop() 140 print "%s wi nds the hand with %s" % (winner[0], hand.HAND_ORDERS[winner[1][0]])140 print "%s withs with %s" % (winner[0],hand.format_hand(winner[1])) 141 141 142 142
