Advertisement
Guest User

Untitled

a guest
Dec 17th, 2012
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. class mylist(list):
  2.       def __add__(self, other):
  3.           new = mylist(self)
  4.           new += other
  5.           return new
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement