All pastes #775542 Raw Edit

Stuff

public python v1 · immutable
#775542 ·published 2007-11-15 17:14 UTC
rendered paste body
class MyString(str):        def __sub__(self, y):                if self.endswith(y):                        return self[:-len(y)]x = MyString("mailbox")print x - "box"