Commit 24de843c authored by Tres Seaver's avatar Tres Seaver

persistent.list: 100% branch coverage.

parent 01ffe6fe
......@@ -23,7 +23,7 @@ from persistent._compat import PYTHON2
class PersistentList(UserList, persistent.Persistent):
__super_setitem = UserList.__setitem__
__super_delitem = UserList.__delitem__
if PYTHON2:
if PYTHON2: # pragma: no cover
__super_setslice = UserList.__setslice__
__super_delslice = UserList.__delslice__
__super_iadd = UserList.__iadd__
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment