LS

Following fragment:
===================

aList = [['a']]
anItem = ['a']

print aList
aList.remove (anItem)
print aList


Prints in IP 0.9.6
==================

[['a']]
Traceback (most recent call last):
   at __main__.Initialize() in C:\activ_dell\prog\fun\src\funTry.py:line 5
ValueError: list.index(x): x not in list

Prints in IP 0.9.5
==================

[['a']]
[]

Prints in Cpython 2.4
=====================

[['a']]
[]


Of course this probably has to do with the in-bug reported earlier.
But this one for me is more severe since I use list.remove quite a lot in my
code.


Kind regards
Jacques de Hooge
[EMAIL PROTECTED] 


_______________________________________________
users mailing list
users@lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to