In Python 2.x, you should always make your classes inherit from object if they don't inherit from anything else. This is because about halfway through the lifetime of Python 2, all classes were placed in the same inheritance tree (so that everything is an object). For backwards compatibility, they can't force this to happen, so you have to do it yourself.
If you make A inherit from object then everything works. Note that the fact that A is not in the main scope says nothing about whether the interpreter knows about it. Indeed, the interpreter knows about lots of things that aren't in the main scope, since it knows about everything in the program!
You should be clear that the classes of a and b are different classes, both named A. You can do that, because they're not in the main scope so there's no name clash. There are therefore two class attributes called x, one on each version of the class A, and so there's no reason changing one should modify the other. If you want both instances of A to refer to the same class A, you should (of course) make A global!
I assume you meant to write print A.x instead of print x, so I fixed that for you.
Note that this is kind of a strange thing to do: you're dynamically creating a class with a class attribute x, instantiating it, and then returning the instance with the class variable. Are you sure you don't want to do self.x = value in __init__, and get rid of the line x = 2?
Python 2.7.2 (default, Jun 20 2012, 16:23:33)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> def f(value):
... class A(object):
... x = 2
... def __init__(self, value):
... A.x = value
... def print_x(self):
... print A.x
... return A(value)
...
>>> a = f(4)
>>> b = f(5)
>>>
>>> a.print_x()
4
>>> b.print_x()
5
>>> a
<__main__.A object at 0x10e2e1ed0>
>>> A
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'A' is not defined
>>> a
<__main__.A object at 0x10e2e1ed0>
>>> b
<__main__.A object at 0x10e2e1fd0>
>>> type(a)
<class '__main__.A'>
>>>
print A.x? – katrielalex Aug 7 '12 at 11:18