Justin Li

Results 3 issues of Justin Li

I understand we can still defined a `DateField` using `serpy.MethodField()`, but it would be handy to have one already.

I have encountered multiple bugs due to supporting backward compatibility of python2, and it makes development extremely hard since I have to hack the code to make it work for...

``` from frozendict import frozendict a = frozendict({'a': 1}) b = a.copy() b['c'] = 1 ``` throws the following error: ``` Traceback (most recent call last): File "", line 1,...