<div dir="ltr"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">



<li>All enums are now implemented as <code>enum.Enum</code> (PyQt5 used <code>enum.IntEnum</code>
  for scoped enums and a custom type for traditional named enums).  PyQt5
  allowed an int whenever an enum was expected but PyQt6 requires the correct
  type.</li><li><code>QFlags</code> are implemented as <code>enum.Flag</code>.</li></blockquote><div><br></div><div>As mentioned in PyQt6 released news, I found this also affected non-PyQt project with sip 6, such as:</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div>
namespace demo {</div><div>    enum Hello {</div><div>        World = 0</div><div>    }</div><div>}<br></div></blockquote><div><br></div><div>Will not possibly be used as <i>demo.World</i> with python. Searching the document found the /NoScope/ but didn't help, it just failed to compile.</div><div>The only way for now I can see is removing the enum name (Hello for example), but it's just too weird.</div><div><br></div><div>Is there another way to make enum compatible with sip 5?<br>

</div></div>