Thriftpy / thriftpy2

Pure python approach of Apache Thrift.
MIT License
572 stars 91 forks source link

typedef alias not deleted in generated module #124

Open aisk opened 4 years ago

aisk commented 4 years ago

For we have thirft file:

test.thrift

struct A {
    1: i32 a
}

typedef A B

With generated module, we had test.B, with value (12, test.A). I think this field is not excepted, and in apache thrift, test.B does not exists.