Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having an application developed in python and google app engine, but when i am try to customize this application then it is giving me compile time error in the previous code which is running fine on live. Code is:

if version in ['beta', 'alpha'] :
            type=version
            version = memcache.get(type)
            if not version:
                v = RouterVersions.get_by_key_name(type)
                if not v : 
                    logging.error('No version found in RouterModel for %s', type)
                    self.error(404)
                    return;

                version = v.version
                memcache.add(v.type, version) 

whenver i am using memcache.add or get property it is giving compile time error "undefined variable from import get". I am not able to know why is it so. I am new to python and google app engine. My application was created in python 2.5 and i am using 2.7 now. Is that the issue or something else ?

share|improve this question
1  
You should post the full stacktrace. Currently I don't see how your code should cause an "undefined variable from import get". – schuppe Apr 19 '12 at 16:03
Also, please cross reference the line numbers in the stacktrace and the line numbers in your code snippet. – R Samuel Klatchko Apr 20 '12 at 0:15

1 Answer

up vote 5 down vote accepted

Did you perhaps name a file memcache.py? If so remove it and also memcache.pyc.

share|improve this answer
9  
All hail StackOverflow, where you might get debugging advice from THE MAN WHO WROTE YOUR PROGRAMMING LANGUAGE. – jeffrey_t_b Apr 20 '12 at 5:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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