Interface support?

S

Steve

Is it possible to design interfaces that classes must implement in
Python? If it's not, is this functionality planned at all for the future?

Thanks,
Steve
 
M

Michele Simionato

Twisted and Zope already use interfaces. You can download
the interface package and use it in you project.


Michele Simionato
 
S

Steve

Michele said:
Twisted and Zope already use interfaces. You can download
the interface package and use it in you project.

Thanks for the response. I'm completely new to Python, where exactly
would I go to find these interface packages(Python site, or Twisted/Zope
sites)? Is it the same interface package for both, or are they
different? If different, is one better than the other?

Thanks,
Steve
 
M

Michele Simionato

Now they use the same interface package. For the other
questions: google is your friend. (try "zope interfaces"
then "twisted interfaces").
 
M

Michael Spencer

Steve said:
Is it possible to design interfaces that classes must implement in
Python?

There are some well-known 'independent' implementations of interfaces:
Zope Interfaces :http://www.zope.org/Wikis/Interfaces/FrontPage
- a separable component of the much larger app server
Twisted Interfaces: see http://twistedmatrix.com/

PyProtocols: http://peak.telecommunity.com/PyProtocols.html, whose
author is one of the protagonists in the PEP246 saga


There are also several possible light-weight roll-your-own solutions
One common idiom is an abstract base class:

class SomeInterface(object):
def someMethod(self, argspec):
# Should never get here, because the implementation overrides this method
raise NotImplmentedError

but the compiler doesn't pay any special attention to these classes so failure
to implement the interface is detected at runtime

If it's not, is this functionality planned at all for the future?Python Enhancement Proposals 245, and 246 http://www.python.org/peps/ discuss an
interface syntax and the related topic of object adaptation. These are both
current discussions among the Python developers with no decision on whether/when
to introduce either as far as I know. Observer the fray at:
http://mail.python.org/pipermail/python-dev/


Guido Van Rossum (Python creator and BDFL) recently blogged about "Optional
Static Type Checking" http://www.artima.com/weblogs/viewpost.jsp?thread=89161
as part of long-range planning for a future Python 3000 (some years in the future)

HTH

Michael
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,222
Messages
2,571,142
Members
47,757
Latest member
PDIJaclyn

Latest Threads

Top