On Sat, 8 Oct 2011 22:21:02 -0600 Eric Snow <ericsnowcurren...@gmail.com> wrote: > I'm writing a bunch of classes that have "Interface" in the name and > find that the length of the subsequent names is starting to get in the > way of readability (I don't really care about saving keystrokes). Is > "IX" conventional enough to use in place of "Interface" in a class > name? Thanks!
Here's a suggestion based on my complete ignorance of you application so take it for what it is worth. If keystrokes don't matter to you consider this. class INTERFACE: pass class Something(INTERFACE): ... It isn't in the name but the definition is clearly an "INTERFACE" (whatever that is) and you also have the option of gathering things in common to INTERFACEs in the superclass. -- D'Arcy J.M. Cain <da...@druid.net> | Democracy is three wolves http://www.druid.net/darcy/ | and a sheep voting on +1 416 425 1212 (DoD#0082) (eNTP) | what's for dinner. -- http://mail.python.org/mailman/listinfo/python-list