Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 65 for obj (0.099 sec.)
9. クラス — Python 3.6.5 ドキュメント 6341
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 終端に到達して) 抜けると、 クラスオブジェクト (class object) が生成されます。クラスオブジェクトは、基本的に ... におけるすべての属性参照で使われている標準的な構文、 obj.name を使います。クラスオブジェクトが生成された際に ... オブジェクトではなく、 メソッドオブジェクト (method object) です。 9.3.4. メソッドオブジェクト ¶ 普通、メソ ... denotes a valid class attribute that is a function object, a method object is created by packing (pointer ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 6283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e does not start its code running -- the coroutine object returned by the call doesn't do anything until ... n_until_complete() method when it gets a coroutine object instead of a task. The diagram shows the contro ... back is called with a single argument - the future object. If the future is already done when this is cal ... す。 A task is responsible for executing a coroutine object in an event loop. If the wrapped coroutine yiel ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
21.28. ipaddress --- IPv4/IPv6 操作ライブラリ — Python 3.6.5 ドキュメント 6283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ess オブジェクト ¶ The IPv4Address and IPv6Address objects share a lot of common attributes. Some attribu ... IPv6 addresses are also implemented by IPv4Address objects, in order to make it easier to write code that ... handles both IP versions correctly. Address objects are hashable , so they can be used as keys in ... オブジェクト ¶ All attributes implemented by address objects are implemented by network objects as well. In ...
https://man.plustar.jp/python/library/ipaddress.html - [similar]
4. その他の制御フローツール — Python 3.6.5 ドキュメント 6283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ッドとは、オブジェクトに '属している' 関数のことで、 obj を何らかのオブジェクト (式であっても構いません)、 ... そのオブジェクトで定義されているメソッド名とすると、 obj.methodname と書き表されます。異なる型は異なるメソッ ... 注 [1] 実際には、 オブジェクトへの参照渡し (call by object reference) と書けばよいのかもしれません。という ...
https://man.plustar.jp/python/tutorial/controlflow.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 6283
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... walloccount to output the total count of allocated objects for each type when the program finishes. This ... PYMEM_DOMAIN_RAW , PYMEM_DOMAIN_MEM , PYMEM_DOMAIN_OBJ ). pymalloc : use the pymalloc allocator for PYMEM ... _DOMAIN_MEM and PYMEM_DOMAIN_OBJ domains and use the malloc() function for the PYME ... ymalloc memory allocator every time a new pymalloc object arena is created, and on shutdown. This variabl ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 6240
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 非常口 として使用することができます。 Any の挙動と object の挙動を対比しましょう。 Any と同様に、すべての ... 型は object のサブタイプです。しかしながら、 Any と異なり、 ... 逆は成り立ちません: object はすべての他の型のサブタイプでは ありません 。 ... これは、ある値の型が object のとき、型検査器はこれについてのほとんどすべての ...
https://man.plustar.jp/python/library/typing.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 6183
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... l() dir() hex() next() slice() any() divmod() id() object() sorted() ascii() enumerate() input() oct() st ... le : if element : return True return False ascii ( object ) ¶ repr() と同様、オブジェクトの印字可能な表現 ... と bytearray の操作 も参照してください。 callable ( object ) ¶ object 引数が呼び出し可能オブジェクトであれ ... 、呼び出しは失敗する可能性がありますが、偽であれば、 object の呼び出しは決して成功しません。なお、クラスは呼 ...
https://man.plustar.jp/python/library/functions.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 6183
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... protocol has been implemented to support path-like objects . All standard library functions operating on ... have historically been represented as str or bytes objects. This has led to people who write code which o ... perate on file system paths to assume that such objects are only one of those two types (an int repres ... Unfortunately that assumption prevents alternative object representations of file system paths like pathl ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
ライブラリと拡張 FAQ — Python 3.6.5 ドキュメント 6140
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... ェクトのリストを保持し、キューに要素を追加する .put(obj) メソッド、それら要素を返す .get() メソッドを持って ... も実際に閉じられないのはなぜですか? ¶ Python の file object は、低水準の C ファイルディスクリプタ上の、抽象 ...
https://man.plustar.jp/python/faq/library.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 6140
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... + self . connection . recv ( slen - len ( chunk )) obj = self . unPickle ( chunk ) record = logging . mak ... eLogRecord ( obj ) self . handleLogRecord ( record ) def unPickle ( ... is example adapter expects the passed in dict-like object to have a 'connid' key, whose value in brackets ... 現する方法もあります: import logging class Message ( object ): def __init__ ( self , fmt , args ): self . f ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT