Python won't find variable in module
问题 I just started playing around with Theano but have a strange problem in Eclipse. I am trying to import the config module to run some example code. The import works fine and I can see what's in the module. Here is the simple code I am trying: from theano import config print config This works fine and I get an output like: floatX (('float64', 'float32')) Doc: Default floating-point precision for python casts Value: float32 ... and some more lines like that. Unfortunately if I use the following