The interactive Python window does not display usage and tool-specific help in the Help window for all classes and functions.
最後に公開された状態: August 19, 2020ArcGIS for Desktop
不具合 ID 番号
BUG-000088086
送信されました
June 3, 2015
最終更新日
June 5, 2024
適用対象
ArcGIS for Desktop
見つかったバージョン
10.3
ステータス
Will Not Be Addressed
開発チームは、この問題またはリクエストを検討した結果、これに対処しないことに決定しました。 問題の「参考情報」セクションに、さらに詳細な説明が示されていることがあります。
参考情報
We apologize that we were unable to address this issue within the current product support cycle. If the issue continues to affect your work in a supported release, please contact Technical Support.
対処法
Use Python's built-in help function and pass in the tool name that needs to be searched. The help is displayed in the main Python section.
Use Python's built-in function attribute __doc__ following the tool to show the documentation string. The help is displayed in the main Python section.
>>> arcpy.Buffer_analysis(
>>> help(arcpy.Buffer_analysis)
>>> print arcpy.Buffer_analysis.__doc__