symmetryinvestments / autowrap

Wrap existing D code for use in Python, Excel, C#
BSD 3-Clause "New" or "Revised" License
80 stars 16 forks source link

Python (at least pynih) can't handle classes with field names repeated from base #213

Open atilaneves opened 4 years ago

atilaneves commented 4 years ago

This won't work:

    class MyException: Exception {
        // These members make no sense, but that's what
        // std.xml.CheckException does
        this(string msg) { super(msg); }
        string msg;
        size_t line;
    }