You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
362 B
15 lines
362 B
# test using an OrderedDict as the locals to construct a class
|
|
|
|
try:
|
|
from collections import OrderedDict
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
if not hasattr(int, "__dict__"):
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
|
|
A = type("A", (), OrderedDict(a=1, b=2, c=3, d=4, e=5))
|
|
print([k for k in A.__dict__.keys() if not k.startswith("_")])
|
|
|