Spurious ZeroDivisionError for complex powers when the phase is infinite
まだ誰も着手していません。
- 主要言語
- Python
- スター
- 77.2k
- フォーク
- 35.9k
- PR マージ指標
- PR 指標を取得中
説明
>>> complex('inf')**1j
Traceback (most recent call last):
File "<python-input-0>", line 1, in <module>
complex('inf')**1j
~~~~~~~~~~~~~~^^~~
ZeroDivisionError: zero to a negative or complex power
The base is not zero. The result should be nan+nanj, as in the GNU MPC.
_Py_c_pow() computes an infinite phase here, and cos() and sin() of an infinite argument are domain errors, so libm sets errno to EDOM. complex_pow() translates any EDOM to ZeroDivisionError, as it cannot distinguish it from the EDOM set for a zero base.
Any finite base for which the phase overflows is affected too:
>>> complex(1e300)**complex(0, 1e308)
ZeroDivisionError: zero to a negative or complex power
>>> complex(2)**complex(0, float('inf'))
ZeroDivisionError: zero to a negative or complex power
sin() and cos() set errno only for infinite arguments, so it is enough to discard errno in _Py_c_pow() after computing the result: _Py_ADJUST_ERANGE2() recovers ERANGE from the result itself.
Noticed by @hpkfft in #156694.
Linked PRs
- gh-156887
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
_Py_c_pow() と complex_pow() から始め、issue の再現コードを使って無限の偏角に対する errno の処理を確認します。結果が ZeroDivisionError ではなく nan+nanj になることを確認し、リンクされた PR のステータスを確認した後、関連する複素数べき乗のテストを実行します。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- backend
- issue の種類
- バグ
- 難易度
- 2/5
- 見積もり時間
- 1〜3時間
- 活発さ
- 停滞
- 明瞭さ
- 明確に書かれている
- 初心者へのやさしさ
- 25/100