Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 26 for inspect (0.029 sec.)
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 16382
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 29. Python ランタイムサービス » 29.12. inspect --- 活動中のオブジェクトの情報を取得する ¶ ソースコ ... ード: Lib/inspect.py inspect は、活動中のオブジェクト (モジュール、ク ... ら設定されるようになり、変更できるようになりました。 inspect. getmembers ( object [ , predicate ] ) ¶ オブジェク ... はメタクラスで定義されたクラス属性のみを返します。 inspect. getmodulename ( path ) ¶ Return the name of the m ...
https://man.plustar.jp/python/library/inspect.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 8711
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... た。これは MIME 処理を簡単にします 。 ( bpo-18891 ) inspect と pydoc が以前よりも遥かに幅広い種類の callable オ ... po-18690 and bpo-19078 .) Argument Clinic の導入、 inspect と pydoc になされた他の変更の結果、多くの場合で he ... Help ‣ About IDLE からも辿り着けます。 importlib ¶ InspectLoader ABC に新規メソッド source_to_code() が追加さ ... uted by Eric Snow and Brett Cannon in bpo-15627 .) InspectLoader では get_code() メソッドへのデフォルト実装追 ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
26.2. pydoc --- ドキュメント生成とオンラインヘルプシステム — Python 3.6.5 ドキ... 8513
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... コメント行のブロックから記述を取得しようと試みます( inspect.getcomments() を参照してください)。 組み込み関数の ... pydoc は、callable からシグニチャの情報を得るのに inspect.getfullargspec() ではなく inspect.signature() を使 ...
https://man.plustar.jp/python/library/pydoc.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 8513
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... om_file_location() now accept a path-like object . inspect ¶ The inspect.signature() function now reports the ... hurn when upgrading from Python 2.7 and the legacy inspect.getargspec() API, the previously documented deprec ... ation of inspect.getfullargspec() has been reversed. While this fun ... or single/source Python 2/3 code bases, the richer inspect.signature() interface remains the recommended appr ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 8463
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ontributed by Brett Cannon in bpo-17621 .) The abc.InspectLoader.source_to_code() method is now a static meth ... ject. (Contributed by Brett Cannon in bpo-20383 .) inspect ¶ Both the Signature and Parameter classes are now ... def foo ( a , b = 'ham' , * args ): pass >>> ba = inspect . signature ( foo ) . bind ( 'spam' ) >>> ba . app ... elivanov in bpo-20691 .) A set of new functions to inspect coroutine functions and coroutine objects has been ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 8149
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... > sys.flags sys.flags(debug=0, division_warning=0, inspect=0, interactive=0, optimize=0, dont_write_bytecode= ... by Neil Schemenauer and Nick Coghlan; bpo-5178 .) inspectinspect モジュールに新たな関数 getgeneratorstate ... レータでないイテレータには使えません。---): >>> from inspect import getgeneratorstate >>> def gen (): ... yield ... を活性化することなく検索するのをサポートするために、 inspect モジュールに getattr_static() 関数が追加されました ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
8.4. collections.abc --- コレクションの抽象基底クラス — Python 3.6.5 ドキュメン... 8083
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... すると、 False が返されます。これらを検出するには、 inspect.isawaitable() を使用します。 バージョン 3.5 で追加 ... すると、 False が返されます。これらを検出するには、 inspect.isawaitable() を使用します。 バージョン 3.5 で追加 ...
https://man.plustar.jp/python/library/collections.abc.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 8083
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 関数シグニチャオブジェクト ¶ 新たに追加された関数 inspect.signature() は、Python 呼び出し可能オブジェクト (c ... s.partial() オブジェクト。新たに追加されたクラス群 inspect.Signature , inspect.Parameter , inspect.BoundArgum ... します。 (Contributed by Sijin Joseph in bpo-8808 .) inspect ¶ getclosurevars() 関数が追加されました。この関数は ... Iの変更 ftplib functools gc hmac http html imaplib inspect io itertools logging math mmap multiprocessing nnt ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
29. Python ランタイムサービス — Python 3.6.5 ドキュメント 7968
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 11. gc --- ガベージコレクタインターフェース 29.12. inspect --- 活動中のオブジェクトの情報を取得する 29.12.1. ...
https://man.plustar.jp/python/library/python.html - [similar]
索引 — Python 3.6.5 ドキュメント 7901
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » 索引 – 記号 ! (pdb command) != 演 ... ourceN> tarfile コマンドラインオプション --details inspect コマンドラインオプション --extract <tarfile> [<out ...
https://man.plustar.jp/python/genindex-%E8%A8%98%E5%8F%B7.html - [similar]
PREV 1 2 3 NEXT