Vijay <rvij...@gmail.com> added the comment:

Wanted to post a possible workaround until this is fixed. One can simply wrap a 
union anonymously inside a structure. Like so:

struct my_struct_s {
  union my_union_u {
    <original union contents>
  };
};

This temporarily solved the problem in my case.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue35366>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to