Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Must explicitly convert IntEnum to int to use equality comparison #1848

Closed
@baptisteguidoux

Description

@baptisteguidoux

Environment

  • Pythonnet version: 3.0.0-a2
  • Python version: 3.9.10
  • Operating System: Windows 10 Pro - 21H2 - 19044.1766
  • .NET Runtime: Unity/Mono

Details

  • When trying to compare the equality of Python IntEnum instances from C#, they must be explicitly converted to an int.
# in my_module.py fileclassMyEnum(enum.IntEnum):OK=1ERROR=2defget_status():returnMyEnum.OK

No crash.

PythonRunner.EnsureInitialized();using(Py.GIL()){// Import our moduledynamicmy_module=Py.Import("my_module");dynamicMyEnum=my_module.MyEnum;// Call the Python func on C# sidedynamicstatus=my_module.get_status();if((int)status==(int)MyEnum.OK)// <-- have to convert to intif(status==MyEnum.OK)// when not converting to int, they are not evaluated as equal (no crash)}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


      [8]ページ先頭

      ©2009-2025 Movatter.jp