Changes by Jeff Hall :
--
nosy: +laxrulz777
___
Python tracker
<http://bugs.python.org/issue4755>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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