Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 211 for OBJECT (0.005 sec.)
- 29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 10141
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...、変更できるようになりました。 inspect. getmembers ( object [ , predicate ] ) ¶ オブジェクトの全メンバーを、(名...based directly on importlib . inspect. ismodule ( object ) ¶ オブジェクトがモジュールの場合真を返します。 i...nspect. isclass ( object ) ¶ オブジェクトが組み込みか Python が生成したクラ...スの場合に真を返します。 inspect. ismethod ( object ) ¶ オブジェクトがメソッドの場合真を返します。 ins... - https://man.plustar.jp/python/library/inspect.html - [similar]
- 19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 9897
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...のパース ¶ ソースコード: Lib/email/parser.py Message object structures can be created in one of two ways: they...eated from whole cloth by creating an EmailMessage object, adding headers using the dictionary interface, an...s. You can pass the parser a bytes, string or file object, and the parser will return to you the root EmailM...essage instance of the object structure. For simple, non-MIME messages the paylo... - https://man.plustar.jp/python/library/email.parser.html - [similar]
- 3. データモデル — Python 3.6.5 ドキュメント 9813
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...ェクト、値、および型 ¶ Python における オブジェクト (object) とは、データを抽象的に表したものです。Python プロ...nce (for class C , say) would yield a class method object, it is transformed into an instance method object...ributes is C . When it would yield a static method object, it is transformed into the object wrapped by the...static method object. See section デスクリプタ (descriptor) の実装 for... - https://man.plustar.jp/python/reference/datamodel.html - [similar]
- 具象オブジェクト (concrete object) レイヤ — Python 3.6.5 ドキュメント 9273
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...レンスマニュアル » 具象オブジェクト (concrete object) レイヤ ¶ この章では、特定の Python オブジェクト型...させてしまうはずです。 基本オブジェクト (fundamental object) ¶ この節では、Python の型オブジェクトとシングルト...ェクト None オブジェクト 数値型オブジェクト (numeric object) ¶ 整数型オブジェクト (integer object) Boolean オブ...ジェクト 浮動小数点型オブジェクト (floating point object) 複素数オブジェクト (complex number object) C 構造... - https://man.plustar.jp/python/c-api/concrete.html - [similar]
- 8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 8660
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...j = Dict ( red = 1 , green = 2 , blue = 3 ) # this object is weak referenceable tuple と int のような他の組み...のサポート を参照してください。 class weakref. ref ( object [ , callback ] ) ¶ object への弱参照を返します。リ...ッドが発生させる例外と完全に同じ方法で処理されます。 object がハッシュ可能( hashable )ならば、弱参照はハッシュ...可能です。それらは object が削除された後でもそれらのハッシュ値を保持します。... - https://man.plustar.jp/python/library/weakref.html - [similar]
- デスクリプタ HowTo ガイド — Python 3.6.5 ドキュメント 8047
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » デス
...pe(b).__dict__['x'].__get__(b, type(b)) に変換する object.__getattribute__() にあります。データデスクリプタの...が最も低いように実装されています。完全な C 実装は、 Objects/object.c の PyObject_GenericGetAttr() で見つかりま...bute__ ( self , key ): "Emulate type_getattro() in Objects/typeobject.c" v = object . __getattribute__ ( sel...ると、自動的なデスクリプタの呼び出しが行われなくなる object.__getattribute__() と type.__getattribute__() では... - https://man.plustar.jp/python/howto/descriptor.html - [similar]
- マップ型プロトコル (mapping protocol) — Python 3.6.5 ドキュメント 7931
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...レンスマニュアル » 抽象オブジェクトレイヤ (abstract objects layer) » マップ型プロトコル (mapping protocol) ¶...int PyMapping_Check ( PyObject *o ) ¶ Return 1 if the object provides mapping pro...ion always succeeds. Py_ssize_t PyMapping_Size ( PyObject *o ) ¶ Py_ssize_t PyMapping_Length ( PyObject *o )...¶ Returns the number of keys in object o on success, and -1 on failure. For objects that... - https://man.plustar.jp/python/c-api/mapping.html - [similar]
- 11.2. os.path --- 共通のパス名操作 — Python 3.6.5 ドキュメント 7846
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...tcwd(), path)) 。 バージョン 3.6 で変更: path-like object を受け入れるようになりました。 os.path. basename (...'' ) を返します。 バージョン 3.6 で変更: path-like object を受け入れるようになりました。 os.path. commonpath...ジョン 3.5 で追加. バージョン 3.6 で変更: path-like objects のシーケンスを受け入れるようになりました。 os.pat...al/lib' ]) '/usr' バージョン 3.6 で変更: path-like object を受け入れるようになりました。 os.path. dirname (... - https://man.plustar.jp/python/library/os.path.html - [similar]
- 19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 7804
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...The modern interface supports encoding bytes-like objects to ASCII bytes , and decoding bytes-like objects...nctions for encoding and decoding to and from file objects . It only supports the Base64 standard alphabet,...( s , altchars=None ) ¶ Base64 を使って bytes-like object の s をエンコードし、エンコードされた bytes を返し...ン引数 altchars は最低でも 2 の長さをもつ bytes-like object で (これ以降の文字は無視されます)、これは + と / の... - https://man.plustar.jp/python/library/base64.html - [similar]
- 26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 7761
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...T 1')] >>> mock . mock_calls == expected True call object を chained call を表す list にするために .call_lis...back (most recent call last): ... AttributeError : object has no attribute 'old_method' Using a specificatio...の便利なデコレータを提供しています: patch() , patch.object() , patch.dict() です。 patch はパッチ対象を指定す...置き換えるオブジェクトを渡すことができます。 'patch.object' はオブジェクトとパッチしたい属性名、それにオプショ... - https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
