Results 2 issues of Rico Hageman

Quick question on this: should we be allowing `#[pyo3(item)]` here? Is there any reasonable interpretation beside the elements always being item 0, item 1, item 2 etc? I wonder if...

needs-design

In python the convention is to compare enums by identity (`Enum.A is Enum.A` and `Enum.A is not Enum.B`) instead of equality (`Enum.A == Enum.A` and `Enum.A != Enum.B`). However, a...