New submission from Jaroslaw Rosiek :
Methods set.add and set.discard should return boolean values according
to collections.MutableSet but they are not.
>>> print set().add(5)
None
>>> print set().discard(5)
None
--
components: Library (Lib)
messages: 79665
nosy
Changes by Jaroslaw Rosiek :
--
keywords: +patch
Added file: http://bugs.python.org/file12701/_abcoll.patch
___
Python tracker
<http://bugs.python.org/issue4
Changes by Jaroslaw Rosiek :
Added file: http://bugs.python.org/file12700/example2.py
___
Python tracker
<http://bugs.python.org/issue4920>
___
___
Python-bugs-list mailin
Changes by Jaroslaw Rosiek :
Removed file: http://bugs.python.org/file12699/example2.py
___
Python tracker
<http://bugs.python.org/issue4920>
___
___
Python-bugs-list m
Changes by Jaroslaw Rosiek :
Added file: http://bugs.python.org/file12699/example2.py
___
Python tracker
<http://bugs.python.org/issue4920>
___
___
Python-bugs-list mailin
New submission from Jaroslaw Rosiek :
1. collections.MutableSet refers to __next__() slot instead of next()
buildin.
2. collection.Iterator is not compatible with 2.6's iterators which
should have next() slot. Proposed solution: add a next() method to
collections.Iterator that falls ba