checking protocols.

2019-01-19 Thread Avi Gross
Short question. Checking if a protocol is set up?

Many python improvements are changes to classes that implement a protocol.
There are things you can do to make your own classes work with the protocol
by setting various dunder variables like __iter__, __next__ and writing
appropriate ode including throwing the right error class when done.
Similarly the "with" statement works with objects that implement __enter__
and __exit__. There can be plenty of others like this and more can be
anticipated in the future.

So, several related questions. Tools that help a developer add appropriate
things to an object to implement the protocol or to test if it was done
right. Perhaps a function with a name like is_iterable() that tells if the
protocol can be applied. For the specific case of an iterable, I found
something that seems to work for at least some cases:

from collections import Iterable
item = [1, 2, 3, 4]

isinstance(item, Iterable)

Not sure if it would work on one I created that did the right things or what
it checks.

I am interested in a pointer to something that describes many of the known
protocols or extensions and maybe to modules designed sort of as I said
above. I am aware some protocols may be not-quite standard with parts of the
protocol embedded in different objects like wrappers or objects returned
upon a request to have a proxy and many other techniques that seem to abound
and allow multiple layers of indirection or seemingly almost magical as in
multiple inheritance drop-ins and so on. That is what may make these things
harder if someone uses something like __getattr__ or descriptors to
intercept calls and provide the functionality without any actual sign of the
dunder key normally expected.

And, yes, I am aware of a tried and true method called try ... except ... to
see if it seems to work.


-- 
https://mail.python.org/mailman/listinfo/python-list


Re: checking protocols.

2019-01-23 Thread DL Neil

Avi

Haven't noticed an answer to this. Did I miss anything?


On 20/01/19 11:07 AM, Avi Gross wrote:

Short question. Checking if a protocol is set up?


=do you mean that to check/require that a class exhibits a particular 
protocol we should use abstract classes - will not instantiate unless 
all the required components are coded?




Many python improvements are changes to classes that implement a protocol.
There are things you can do to make your own classes work with the protocol
by setting various dunder variables like __iter__, __next__ and writing
appropriate ode including throwing the right error class when done.
Similarly the "with" statement works with objects that implement __enter__
and __exit__. There can be plenty of others like this and more can be
anticipated in the future.

So, several related questions. Tools that help a developer add appropriate
things to an object to implement the protocol or to test if it was done
right. Perhaps a function with a name like is_iterable() that tells if the
protocol can be applied. For the specific case of an iterable, I found
something that seems to work for at least some cases:

from collections import Iterable
item = [1, 2, 3, 4]

isinstance(item, Iterable)

Not sure if it would work on one I created that did the right things or what
it checks.


=your code should be 'approved' if it implements the next() method, etc. 
Did you try such?




I am interested in a pointer to something that describes many of the known
protocols or extensions and maybe to modules designed sort of as I said
above. I am aware some protocols may be not-quite standard with parts of the
protocol embedded in different objects like wrappers or objects returned
upon a request to have a proxy and many other techniques that seem to abound
and allow multiple layers of indirection or seemingly almost magical as in
multiple inheritance drop-ins and so on. That is what may make these things
harder if someone uses something like __getattr__ or descriptors to
intercept calls and provide the functionality without any actual sign of the
dunder key normally expected.


=Questioning similarly, I recall finding one of these - but do you think 
that I can re-find it now? Apologies.


I (too) think it would be handy to have such a list. There are many for 
the 'magic methods' themselves, in all the better Py3 texts.


Yesterday I needed to add __LT__() to allow a list of class instances to 
be sorted, __EQ__ to enable a list of (other) instances to be searched 
(if element in list_of_instances), and made a class callable 
(__call__()). Each time I wondered: is this the best way to accomplish 
or is there already a mechanism I could be employing/not 'reinventing 
the wheel'. (perhaps incompletely!)



For your further reading pleasure (maybe):

On the this topic, one of many references is Interfaces in Python: 
Protocols and ABCs 
http://masnun.rocks/2017/04/15/interfaces-in-python-protocols-and-abcs/


Which reminded me of the amusingly titled: Duck Typing vs. Goose Typing, 
Pythonic Interfaces 
https://dgkim5360.github.io/blog/python/2017/07/duck-typing-vs-goose-typing-pythonic-interfaces/


Diving into the docs (although not finding exactly what we seek):
https://docs.python.org/3/library/abc.html
- didn't include all, eg context managers:
https://docs.python.org/3/library/contextlib.html

At a deeper level:
https://docs.python.org/3/c-api/abstract.html?highlight=abstract
and
https://docs.python.org/3.6/c-api/object.html
- again, incomplete in the sense (I gained) of this enquiry.

Hopefully there's something to keep your mind occupied...

--
Regards =dn
--
https://mail.python.org/mailman/listinfo/python-list


Re: checking protocols.

2019-01-23 Thread Chris Angelico
On Thu, Jan 24, 2019 at 11:40 AM DL Neil  wrote:
>
> Avi
>
> Haven't noticed an answer to this. Did I miss anything?
>

No idea where you originally sent it, but I didn't see it until just now.

ChrisA
-- 
https://mail.python.org/mailman/listinfo/python-list


RE: checking protocols.

2019-01-23 Thread Avi Gross
See reply BELOW in sections marked by ==:

-Original Message-
From: DL Neil  
Sent: Wednesday, January 23, 2019 7:39 PM
To: Avi Gross ; python-list@python.org
Subject: Re: checking protocols.

Avi

Haven't noticed an answer to this. Did I miss anything?

==REPLY ON non-TOP as requested on 1/23/2019
Dave,

I never saw the original message appear and thus expected no replies. I see a 
later post by Chris indicating he did not see it either. I assumed perhaps a 
moderator needed to approve it.

My question really boils down to being intrigued how the python language can be 
extended using documented protocols in more ways and having a place where you 
can see a list of the ones out there and a way to join in with your own classes 
reliably and so on.

I note there may be many unpublished protocols used internally within modules 
that also create similar structures but do not expect to be emulated.

I see interpolated comments below and will interpolate within that but it gets 
confusing.
==END first set of remarks on 1/23/2019
==ORIGINAL MESSAGE BELOW if anyone wants to see in-line comments and 
supply info.===

On 20/01/19 11:07 AM, Avi Gross wrote:
> Short question. Checking if a protocol is set up?

=do you mean that to check/require that a class exhibits a particular protocol 
we should use abstract classes - will not instantiate unless all the required 
components are coded?

== I am not looking for any specific options but indeed including an 
abstract class might be one way to go. It might supply a reasonable way to ask 
if the class you make yourself INTENDS on running that protocol and would 
enforce the presence of the required methods somewhere in the inheritance 
chain. Of course the functions could be stubs that don't do the right thing, or 
anything passable.


> Many python improvements are changes to classes that implement a protocol.
> There are things you can do to make your own classes work with the 
> protocol by setting various dunder variables like __iter__, __next__ 
> and writing appropriate ode including throwing the right error class when 
> done.
> Similarly the "with" statement works with objects that implement 
> __enter__ and __exit__. There can be plenty of others like this and 
> more can be anticipated in the future.
> 
> So, several related questions. Tools that help a developer add 
> appropriate things to an object to implement the protocol or to test 
> if it was done right. Perhaps a function with a name like 
> is_iterable() that tells if the protocol can be applied. For the 
> specific case of an iterable, I found something that seems to work for at 
> least some cases:
> 
> from collections import Iterable
> item = [1, 2, 3, 4]
> 
> isinstance(item, Iterable)
> 
> Not sure if it would work on one I created that did the right things 
> or what it checks.

=your code should be 'approved' if it implements the next() method, etc. 
Did you try such?

==Just to be clear, yes. That is the current state of affairs. ANY CODE 
can be run but probably fails when it does not follow the recipe. Any of many 
places that expect the iteration protocol will ask for a __iter__ and either 
catch the error or fail. If it works, they will call __next__ as often as 
needed and may or may not fail well if it is not found. And, as noted, the 
function may throw the right error object on completion or not and that may 
cause the caller to fail mysteriously or be bypassed if some other error is 
thrown instead. What I am hoping for is OPEN to multiple solutions or to be 
told there is no such need. One solution would be something that can be used to 
exercise the function and report if the protocol is being honored. In this 
case, that is fairly trivial. Just try the object in one of many places the 
iterator protocol is used. It may be less clear how you check if the 'with' 
protocol is satisfied as it may not properly close whatever it is guarding like
  closing a file or freeing a lock. If you test that you may not notice the 
file remains open and so on. But will your code also work if the user closed 
the file already on purpose?


> I am interested in a pointer to something that describes many of the 
> known protocols or extensions and maybe to modules designed sort of as 
> I said above. I am aware some protocols may be not-quite standard with 
> parts of the protocol embedded in different objects like wrappers or 
> objects returned upon a request to have a proxy and many other 
> techniques that seem to abound and allow multiple layers of 
> indirection or seemingly almost magical as in multiple inheritance 
> drop-ins and so on. That is what may make these things harder if 
> someone uses something like __getattr__ or descriptors to intercept 
> calls 

Re: checking protocols.

2019-01-24 Thread DL Neil

Avi


Haven't noticed an answer to this. Did I miss anything?

I never saw the original message appear and thus expected no replies. I see a 
later post by Chris indicating he did not see it either. I assumed perhaps a 
moderator needed to approve it.


=a silly question on my part. A quick check of the list archive shows 
your original post but no previous responses.




My question really boils down to being intrigued how the python language can be 
extended using documented protocols in more ways and having a place where you 
can see a list of the ones out there and a way to join in with your own classes 
reliably and so on.


=if I am interpreting your intent correctly (equally that of Pythonic 
thinking) the idea is for 'more' to happen at compile-time. This 
expectation likely comes?came from our earlier training in more 
strict/rigid languages. Whereas many characteristics of Python flow 
directly as consequences of it being (chosen/designed to be) a dynamic 
language - and thus many?most such decisions delayed until run-time.


=The first (related) example which springs to mind is object 
polymorphism. It must be so much harder to achieve such incredible power 
and flexibility (as Python does) when 'rules' are 'cast in stone' early.


=However, it might be worth making suggestions generated 'here' to the 
(hard-working) docs team. There are discussions of specific protocols, 
in their individual locations throughout the manual/library. Is it 
sufficiently clear what is expected when building our own classes 
according to 'the' protocol?


=Rather than collecting all the protocols' documentation together (cf 
the sequence currently used), maybe an cross-index somewhere?




I note there may be many unpublished protocols used internally within modules 
that also create similar structures but do not expect to be emulated.


=coming from Python, the PSL, or third-parties?



I see interpolated comments below and will interpolate within that but it gets 
confusing.


=am using line-prefix to help differentiate. Interleaved comments help 
(?me) with following the conversational flow - and ensuring that each 
point/question is addressed (he hopes)




On 20/01/19 11:07 AM, Avi Gross wrote:

Short question. Checking if a protocol is set up?


=do you mean that to check/require that a class exhibits a particular protocol 
we should use abstract classes - will not instantiate unless all the required 
components are coded?

== I am not looking for any specific options but indeed including an 
abstract class might be one way to go. It might supply a reasonable way to ask 
if the class you make yourself INTENDS on running that protocol and would 
enforce the presence of the required methods somewhere in the inheritance 
chain. Of course the functions could be stubs that don't do the right thing, or 
anything passable.

... (previous content removed, as no longer necessary)


=The phrase "we're all adults here" is often used to justify Python's 
apparent inexactitude (cf other languages*). However, I often wonder 
whether that is merely an excuse to avoid explaining oneself properly. 
For example, 'here' (or is it another list, strictly speaking?) I read 
ANNouncements of package updates. How many tell me wonderful additions 
to the package, how much work went into them, what I'd now be able to do 
with it, and who I should credit for all such goodness - but don't 
actually get around to mentioning the package's objectives or 
applicability? Unless I know said package, these ANNs are a waste of my 
reading-time!


=On the other hand, such 'openness' as non-enforced "private variables" 
(applying the 'adults' phrase) enables us to consider them "private" in 
the normal course, but to abuse the notion should the need take us (and 
caution have been thrown to the wind)!


=Back to protocols: and if I want to code certain magic methods, etc, 
comprising a protocol, should I be allowed to choose to ignore other(s)? 
Be it on my own head!


* comparing Python to other languages is (IMHO) neither a reliable nor 
particularly logical argument. How can we be 'the best' if all we do is 
copy and reproduce everyone else - and would that even be possible? 
Surely the valid comparison is between the problems which must be solved 
and the facilities of the language chosen to code the solution?


=That said, there is no question that Python has been developing 
somewhat schizoid tendencies. Another mantra has always been: 'it is 
better to ask forgiveness than permission'*, and thus we should wrap 
assumptive code in a try...except block. This change took a long time to 
sit comfortably in my (albeit small) brain - and possibly still requires 
conscious consideration. My thought pattern** is still: first check the 
data, then ..., ie ensure denominator is not zero before dividing rather 
than


try:
divide
except (whatever):
print( "Not by zero, bub!" )

* (originally attributed to Adm Grace Hopper of COBOL fa