[issue4755] Common path prefix

2008-12-29 Thread Jeff Hall
Changes by Jeff Hall : -- nosy: +laxrulz777 ___ Python tracker <http://bugs.python.org/issue4755> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3689] reversed() not working as intended on lists

2008-08-26 Thread Jeff Hall
New submission from Jeff Hall <[EMAIL PROTECTED]>: reversed() built in is not functioning correctly with list (specifically with len() ) l = [1,2,3,4] rl = reversed(l) type(rl) vs. strings and tuples which just return 'reverse' objects listreverseiterators apparently have

[issue2640] "excel" csv option generates multiple lines

2008-04-16 Thread Jeff Hall
Jeff Hall <[EMAIL PROTECTED]> added the comment: you're absolutely correct, i apologize. On Tue, Apr 15, 2008 at 7:40 PM, Skip Montanaro <[EMAIL PROTECTED]> wrote: > > Skip Montanaro <[EMAIL PROTECTED]> added the comment: > > What platform are you on? Did y

[issue2640] "excel" csv option generates multiple lines

2008-04-15 Thread Jeff Hall
New submission from Jeff Hall <[EMAIL PROTECTED]>: Current: csv.py indicates lineterminator = '\r\n' Issue: looks fine in notepad but when pulled into excel (office 2003) extra lines are added Resolution: should read lineterminator = '\r' -- components: Extensi