关于ftplib模块里的私有方法问题

打个比方。比如ftplib模块里有一个函数
  1. # Internal: get a response from the server.
  2.     # Raise various errors if the response indicates an error
  3.     def getresp(self):
  4.         resp = self.getmultiline()
  5.         if self.debugging: print '*resp*', self.sanitize(resp)
  6.         self.lastresp = resp[:3]
  7.         c = resp[:1]
  8.         if c in ('1', '2', '3'):
  9.             return resp
  10.         if c == '4':
  11.             raise error_temp, resp
  12.         if c == '5':
  13.             raise error_perm, resp
  14.         raise error_proto, resp
复制代码
这个函数在外面访问是无效的。。。。也就是不起任何作用。得不到任何repsonse消息。
注释里写了这是一个Internal方法。。。但在这个类里调用这个方法的时候是肯定有用的。。。
那么它是如何做到的呢。。。。。只是在注释里写一个Internal就行???

作者: fibers   发布时间: 2011-05-20

回复 fibers
怎么得不到repsonse消息?
  1. from ftplib import FTP
  2. ftp = FTP('localhost')
  3. ftp.login()
  4. ftp.putcmd('dir\r\n')
  5. try :
  6.     ftp.getresp()
  7. except Exception ,e:
  8.     print e
复制代码
server应答 500 'DIR': command not understood

作者: 106033177   发布时间: 2011-05-20

回复 106033177


谢谢哥们~~~...是我搞错了。。。-,。-

作者: fibers   发布时间: 2011-05-20