﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
11669	Hand in HandField	joebrown	nobody	"I *think* this is an error, tho I'm not sure, it's caused me confusion either way... isinstance supposed to be Hand or HandField?

class HandField(models.Field):
    # ...

    def to_python(self, value):
        if isinstance(value, Hand):
            return value

        # The string case.
        p1 = re.compile('.{26}')
        p2 = re.compile('..')
        args = [p2.findall(x) for x in p1.findall(value)]
        return Hand(*args)

Thanks for the work eitherway."		closed	Documentation	1.1		invalid			Unreviewed	0	0	0	0	0	0
