Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Re: duck typing assert

Reply
Thread Tools

Re: duck typing assert

 
 
Ian Kelly
Guest
Posts: n/a
 
      11-08-2012
On Thu, Nov 8, 2012 at 10:30 AM, Andriy Kornatskyy
<> wrote:
>
> People who come from strongly typed languages that offer interfaces often are confused by lack of one in Python. Python, being dynamic typing programming language, follows duck typing principal. It can as simple as this:
>
> assert looks(Foo).like(IFoo)
>
> The post below shows how programmer can assert duck typing between two Python classes:
>
> mindref.blogspot.com/2012/11/python-duck-typing-assert.html
>
> Comments or suggestions are welcome.


Overall, it looks potentially useful to me. Looking over the
wheezy.core.introspection source, it appears to ignore special method
names. For example, if you do:

class IFoo(object):
def __len__(self):
pass

class Foo(object):
pass

assert looks(Foo).like(IFoo)

I would expect this to fail, but judging from the code it would not,
as it ignores all names starting with '_'. That makes some sense for
private names (but on the other hand, why would you declare private
names in an interface unless you want to enforce their presence?), but
names like __len__ should not be considered private.

Another comment I have is on properties, and descriptors in general.
Does this allow something declared as a property to be implemented as
a simple class attribute, and vice versa? Or can something declared
as a property be implemented with some custom descriptor class? I
think the answer is "no" to both, as the check it performs is
"t2.__class__ is not t.__class__". I assert though that in general
the type of a descriptor (that is not a simple class attribute) is not
as important in duck testing as its API -- and all descriptors have
basically the same API of __get__, __set__, and __delete__.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
RE: duck typing assert Andriy Kornatskyy Python 0 11-08-2012 07:29 PM
duck typing assert Andriy Kornatskyy Python 0 11-08-2012 05:30 PM
duck duck go peter NZ Computing 1 01-09-2011 05:19 AM
assert(x) and '#define ASSERT(x) assert(x)' Alex Vinokur C Programming 5 11-25-2004 08:48 PM
RE: remove assert statement (Was: Re: PEP new assert idiom) Robert Brewer Python 1 11-07-2004 06:53 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57