Esempio n. 1
0
 def clearMoneyString(money):
     "Renders 'numbers' like '1 200' and '2,000'"
     money = money.strip(u'€€\u20ac$ ')
     return HandHistoryConverter.clearMoneyString(money)
Esempio n. 2
0
	def __init__(self, config, filename):
		print "Initialising Carbon Poker converter class"
		HandHistoryConverter.__init__(self, config, filename, "Carbon") # Call super class init
		self.setFileType("xml")
Esempio n. 3
0
 def clearMoneyString(money):
     "Renders 'numbers' like '1 200' and '2,000'"
     money = money.strip(u'€€\u20ac$ ')
     return HandHistoryConverter.clearMoneyString(money)