[EMAIL PROTECTED] wrote:

> Hello
>
> I just start programing in Python.
> I've got a qestion, how translate the example code writen in Java to
> Python??
>
>
> public class ConnectionManager {
>
>   public ConnectionManager() {
>     super();
>   }
>   public void sendAgent(Agent anAgent, WorkplaceAddress anAddress) {
>
>   }
> }
>
> bye


class ConnectionManager(object):

    def __init__(self):
        super(ConnectionManager,self).__init__()
  
    def sendAgent(self, anAgent, anAddress):
        pass


George

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

Reply via email to