parser should distinguish nested classes from class vars
Brought to you by:
edloper
For the following code, epydoc concludes that class "B" has a nested class "x"; it shouldn't make that conclusion. Parse information should be sufficient to distinguish "real" nested classes from variables/aliases like this.
class A: pass
class B: x = A