getappmap / getappmap/appmap-python
uninstrumented functions may be called
オープン
まだ誰も着手していません。
navie-plan
- 主要言語
- Python
- スター
- 104
- フォーク
- 17
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
If application code saves a reference to function when the code is imported, a call to that function won't generate any events in the recording.
For example, with this definition
def free_method():
return "free method"
def Example:
static_method = staticmethod(partial(free_method))
Example.static_method()
no events for the call to free_method will be recorded. This is because instrumentation of free_method happens after the module is loaded, and so after the call to partial(free_method)) has saved the reference to free_method.
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
Issue にある Python の再現プログラムを出発点として使用し、partial と staticmethod によって保存された参照に対して、いつインストルメンテーションが適用されるのかを追跡します。保存されたそれらの参照を介した呼び出しが記録にイベントを生成し、再現プログラムがリグレッションテストでカバーされれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- devtools
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- 説明が足りない
- 初心者へのやさしさ
- 35/100