vote up 1 vote down star

If I have a python class, how can I alias that class-name into another class-name and retain all it's methods and class members and instance members? Is this possible without using inheritance?

e.g. I have a class like:

class MyReallyBigClassNameWhichIHateToType:
    def __init__(self):
         <blah>
    [...]

I'm creating an interactive console session where I don't want my users' fingers to fall off while instantiating the class in the interactive sessions, so I want to alias that really long class name to something tiny like 'C'. Is there an easy way to do this without inheritance?

flag

63% accept rate

4 Answers

vote up 14 vote down check
C = MyReallyBigClassNameWhichIHateToType
link|flag
1  
Works well, but leads to confusion on the long run. If you hate to type it, why not just fix the name once and forever? – S.Lott May 8 at 17:39
I was exaggerating. The original name is 7 characters long, but I truly want the interactive name to be 1 character long. – Ross Rogers May 8 at 17:41
vote up 6 vote down

Also, if you're importing the name from another module...

from modulename import ReallyLongNameWhichIHateToType as FriendlyName
link|flag
You beat me to it! – Jason Baker May 8 at 17:46
vote up 7 vote down

You can simply do:

ShortName = MyReallyBigClassNameWhichIHateToType

A class in Python is just an object like any other, and can have more than one names.

link|flag
vote up 0 vote down

Refactor the name, no reason it should have a name that long.

Otherwise whateverName = VeryLongClassName should do the trick.

link|flag
The name isn't that long, but I want it to be exactly 1 character when I use the class in the interactive session. – Ross Rogers May 8 at 17:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.