[issue10729] fwbackups python lib error

2010-12-18 Thread Ayman Elmasry
New submission from Ayman Elmasry elmasry.ay...@gmail.com: I hope this topic is not completely unfitting here. fwbackups error after backup attempt which concerned python lib: ERROR : Traceback (most recent call last): File /usr/lib/python2.4/site-packages/fwbackups/operations/backup.py

[issue10729] fwbackups python lib error

2010-12-18 Thread Ayman Elmasry
Ayman Elmasry elmasry.ay...@gmail.com added the comment: thank you -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10729 ___ ___ Python-bugs-list

[issue6822] Error calling .storlines from ftplib

2010-08-24 Thread Ayman
Ayman ayman.alsair...@gmail.com added the comment: My other 2 cents worth. Actually that is my main issue. Things used to work in 2.x, and suddenly refused to work after my 3.x upgrade. I'm not saying it worked means it is correct, but the Exception being thrown does not look right. I think

[issue6822] Error calling .storlines from ftplib

2010-08-18 Thread Ayman
Ayman ayman.alsair...@gmail.com added the comment: I do not agree with Antoine. For binary transfer, another method is called, and it does work fine. However, storelines would be called for ASCII mode, in which encoding and decoding should be done by the FTP program. ASCII mode would

[issue6789] ftplib storelines does not honor strings returned in fp.readline

2009-08-27 Thread Ayman
New submission from Ayman ayman.alsair...@gmail.com: in ftplibs.storlines, a call is done on what should be a Text stream: fp.readline() This would work in pre 3.x as it returns bytes but now that readlines returns a string, the call at lines 477 would fail: File C:\Python31\lib\ftplib.py