In article <[email protected]>, [email protected] says... > > On Thu, Jan 22, 2015 at 3:27 PM, Chris Kaynor <[email protected]> > wrote: > > Or use Any, which is basically the same thing: > > > > def adder(a: Any, b: Any) -> Any: > > return a + b > > Yeah, but this just seems like extra noise since it's not going to > help the type checker at all.
I agree. It's after all a fully polymorphic function. There is no reason to pass it through a static analyzer. -- https://mail.python.org/mailman/listinfo/python-list
