Table of Contents

Class: PersistentList ./src/peak/persistence/list.py
Base Classes   
UserList
persistence.Persistent
Methods   
__cmp__
__delitem__
__delslice__
__iadd__
__imul__
__setitem__
__setslice__
append
extend
insert
pop
remove
reverse
sort
  __cmp__ 
__cmp__ ( self,  other )

This works around a bug in Python 2.1.x (up to 2.1.2 at least) where the __cmp__ bogusly raises a RuntimeError, and because this is an extension class, none of the rich comparison stuff works anyway.

  __delitem__ 
__delitem__ ( self,  i )

  __delslice__ 
__delslice__ (
        self,
        i,
        j,
        )

  __iadd__ 
__iadd__ ( self,  other )

  __imul__ 
__imul__ ( self,  n )

  __setitem__ 
__setitem__ (
        self,
        i,
        item,
        )

  __setslice__ 
__setslice__ (
        self,
        i,
        j,
        other,
        )

  append 
append ( self,  item )

  extend 
extend ( self,  other )

  insert 
insert (
        self,
        i,
        item,
        )

  pop 
pop ( self,  i=-1 )

  remove 
remove ( self,  item )

  reverse 
reverse ( self )

  sort 
sort ( self,  *args )


Table of Contents

This document was automatically generated on Mon Apr 29 01:11:06 2024 by HappyDoc version 2.1