view docs/pycon2010/pirate.py @ 340:43569db3ebdb

detect lists with __reversed__ not __getslice__
author catherine@Drou
date Tue, 16 Feb 2010 12:36:14 -0500
parents 2ce34ad4e520
children
line wrap: on
line source

from cmd import Cmd

class Pirate(Cmd):
    pass

pirate = Pirate()
pirate.cmdloop()