Agent-Hellboy / Agent-Hellboy/pylibfinder

Resolve below comments from stackoverflow

オープン
#8 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
C
スター
0
フォーク
0
PR マージ指標
30日以内にマージされた PR はありません

説明

(FWIW, looking through the code I don't see any point where you would filter for functions specifically to begin with.)

Erm, okay. Apparently that's because it actually doesn't. It just looks up names in modules, no matter the underlying type.

```py
>>> pylibfinder.find_similar('int', 0.9)
[{'Module': 'builtins', 'Function': 'int', 'Score': 1.0}]
>>> pylibfinder.find_similar('True', 0.9)
[{'Module': 'builtins', 'Function': 'True', 'Score': 1.0}]
```

I also seem to be getting duplicates. These are all the same object, and one of its aliases is reported twice.

```py
>>> pylibfinder.find_similar('pathsep', 0.9)
[{'Module': 'posixpath', 'Function': 'pathsep', 'Score': 1.0}, {'Module': 'posixpath', 'Function': 'pathsep', 'Score': 1.0}, {'Module': 'os', 'Function': 'pathsep', 'Score': 1.0}]
```

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。