关于ftplib模块里的私有方法问题
打个比方。比如ftplib模块里有一个函数
复制代码
这个函数在外面访问是无效的。。。。也就是不起任何作用。得不到任何repsonse消息。
注释里写了这是一个Internal方法。。。但在这个类里调用这个方法的时候是肯定有用的。。。
那么它是如何做到的呢。。。。。只是在注释里写一个Internal就行???
- # Internal: get a response from the server.
- # Raise various errors if the response indicates an error
- def getresp(self):
- resp = self.getmultiline()
- if self.debugging: print '*resp*', self.sanitize(resp)
- self.lastresp = resp[:3]
- c = resp[:1]
- if c in ('1', '2', '3'):
- return resp
- if c == '4':
- raise error_temp, resp
- if c == '5':
- raise error_perm, resp
- raise error_proto, resp
注释里写了这是一个Internal方法。。。但在这个类里调用这个方法的时候是肯定有用的。。。
那么它是如何做到的呢。。。。。只是在注释里写一个Internal就行???
作者: fibers 发布时间: 2011-05-20
回复 fibers
怎么得不到repsonse消息?
复制代码
server应答 500 'DIR': command not understood
怎么得不到repsonse消息?
- from ftplib import FTP
- ftp = FTP('localhost')
- ftp.login()
- ftp.putcmd('dir\r\n')
- try :
- ftp.getresp()
- except Exception ,e:
- print e
作者: 106033177 发布时间: 2011-05-20
回复 106033177
谢谢哥们~~~...是我搞错了。。。-,。-
谢谢哥们~~~...是我搞错了。。。-,。-
作者: fibers 发布时间: 2011-05-20