<p dir="ltr">On Jun 7, 2016 8:52 PM, "Eric Snow" <<a href="mailto:ericsnowcurrently@gmail.com">ericsnowcurrently@gmail.com</a>> wrote:<br>
> * the default class *definition* namespace is now ``OrderdDict``<br>
> * the order in which class attributes are defined is preserved in the</p>
<p dir="ltr">By using an OrderedDict, names are ordered by first definition point, rather than location of the used definition.</p>
<p dir="ltr">For example, the definition order of the following will be "x, y", even though the definitions actually bound to the name are in order "y, x".<br>
        class C:<br>
            x = 0<br>
            def y(self): return 'y'<br>
            def x(self): return 'x'</p>
<p dir="ltr">Is that okay?</p>