Files
typeshed/third_party/2and3
David Euresti 097e9f5e71 Fix issue with attrib ordering. (#1980)
A call like this:

```
from attr import attrib
from attr.validators import optional, instance_of

c = attrib(default=None, validator=optional(instance_of(bytes)))
```

Was returning no return value, because the first overload was T -> T.
The solution was to change the ordering so that the first overload is
None -> T and infer the type from the other arguments.
2018-03-22 10:50:07 -07:00
..
2016-01-16 16:56:25 -05:00
2017-11-09 10:32:17 -08:00
2017-12-23 06:38:55 -08:00
2018-02-16 17:23:17 -08:00
2016-01-16 16:56:25 -05:00
2018-03-20 15:32:50 -07:00
2017-05-30 23:20:40 -07:00