We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enum.Flagの日本語訳について、説明が間違っている。
Flag 列挙型定数を作成する基底クラスで、ビット演算を使って組み合わせられ、その結果も IntFlag メンバーになります。
Flag
列挙型定数を作成する基底クラスで、ビット演算を使って組み合わせられ、その結果も IntFlag メンバーになります。
https://docs.python.org/ja/3.13/library/enum.html#module-contents
enum.Flag のビット演算の結果が enum.IntFlagとなると書いてしまっている。
英語版 の通り、IntFlagではなくFlagにする。
- 列挙型定数を作成する基底クラスで、ビット演算を使って組み合わせられ、その結果も [IntFlag](https://docs.python.org/ja/3.13/library/enum.html#enum.IntFlag) メンバーになります。 + 列挙型定数を作成する基底クラスで、ビット演算を使って組み合わせられ、その結果も [Flag](https://docs.python.org/ja/3.13/library/enum.html#enum.Flag) メンバーになります。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
概要
enum.Flagの日本語訳について、説明が間違っている。
問題のある箇所 (URLで指定すること)
https://docs.python.org/ja/3.13/library/enum.html#module-contents
問題の詳細
enum.Flag のビット演算の結果が enum.IntFlagとなると書いてしまっている。
修正案
英語版 の通り、IntFlagではなくFlagにする。
The text was updated successfully, but these errors were encountered: