Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 37 for property (0.026 sec.)
29.7. abc --- 抽象基底クラス — Python 3.6.5 ドキュメント 15738
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tmethod def my_abstract_staticmethod ( ... ): ... @property @abstractmethod def my_abstract_property ( self ): ... ... @my_abstract_property . setter @abstractmethod def my_abstract_property ... @abstractmethod def _set_x ( self , val ): ... x = property ( _get_x , _set_x ) デスクリプタをABC 機構と協調さ ... る場合に True になります。例えば、 Python 組み込みの property は、次のコードと透過に振る舞います: class Descript ...
https://man.plustar.jp/python/library/abc.html - [similar]
デスクリプタ HowTo ガイド — Python 3.6.5 ドキュメント 11271
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » デス ... all based on the descriptor protocol. プロパティ ¶ property() を呼び出すことで、属性へアクセスすると関数の呼び ... プタを簡潔に組み立てられます。シグネチャはこうです: property ( fget = None , fset = None , fdel = None , doc = ... None ) -> property attribute このドキュメントでは、管理された属性 x を ... __x = value def delx ( self ): del self . __x x = property ( getx , setx , delx , "I'm the 'x' property." ) デ ...
https://man.plustar.jp/python/howto/descriptor.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 10481
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) iter() print() tuple() callable() format() len() property() type() chr() frozenset() list() range() vars() c ... 変更: キーワード引数 flush が追加されました。 class property ( fget=None , fset=None , fdel=None , doc=None ) ¶ ... property 属性を返します。 fget は属性値を取得するための関数 ... . _x = value def delx ( self ): del self . _x x = property ( getx , setx , delx , "I'm the 'x' property." ) c ...
https://man.plustar.jp/python/library/functions.html - [similar]
34.1. msilib --- Microsoft インストーラーファイルの読み書き — Python 3.6.5 ドキ... 9029
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... サマリー情報オブジェクト ¶ SummaryInformation. GetProperty ( field ) ¶ MsiSummaryInfoGetProperty() を通してサ ... D_SECURITY のいずれかです。 SummaryInformation. GetPropertyCount ( ) ¶ MsiSummaryInfoGetPropertyCount() を通し ... プロパティの個数を返します。 SummaryInformation. SetProperty ( field , value ) ¶ MsiSummaryInfoSetProperty() を ... 通してプロパティをセットします。 field は GetProperty() におけるものと同じ値をとります。 value はプロパテ ...
https://man.plustar.jp/python/library/msilib.html - [similar]
20.10. xml.sax.handler --- SAX ハンドラの基底クラス — Python 3.6.5 ドキュメント 8634
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . all_features ¶ 全機能のリスト。 xml.sax.handler. property_lexical_handler ¶ 値: "http://xml.org/sax/properti ... 拡張ハンドラ。 アクセス: 読み書き可 xml.sax.handler. property_declaration_handler ¶ 値: "http://xml.org/sax/prop ... 拡張ハンドラ。 アクセス: 読み書き可 xml.sax.handler. property_dom_node ¶ 値: "http://xml.org/sax/properties/dom- ... 込み専用; (パース時以外) 読み書き可 xml.sax.handler. property_xml_string ¶ 値: "http://xml.org/sax/properties/xm ...
https://man.plustar.jp/python/library/xml.sax.handler.html - [similar]
8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 8113
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... には偽のプロパティです。 atexit ¶ A writable boolean property which by default is true. When the program exits, ... hutil . rmtree ( self . name ) self . name = None @property def removed ( self ): return self . name is None d ... name ) def remove ( self ): self . _finalizer () @property def removed ( self ): return not self . _finalizer ...
https://man.plustar.jp/python/library/weakref.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 7971
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... type can be determined by checking the exact_type property on the named tuple returned from tokenize.tokenize ... ります。 The returned named tuple has an additional property named exact_type that contains the exact operator ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
8.9. types --- 動的な型生成と組み込み型に対する名前 — Python 3.6.5 ドキュメント 7971
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... オブジェクト属性のディスクリプタとして利用されます。 property 型と同じ目的を持った型ですが、こちらは拡張モジュー ... るような、Cのシンプルなデータメンバで利用されます。 property 型と同じ目的を持った型ですが、こちらは拡張モジュー ...
https://man.plustar.jp/python/library/types.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 7845
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... riate defect will be added to the message's defect property ( InvalidBase64PaddingDefect or InvalidBase64Chara ... class its functionality is replaced by the params property of the individual header objects returned by the h ... class its functionality is replaced by the params property of the individual header objects returned by the h ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
33.1. formatter --- 汎用の出力書式化機構 — Python 3.6.5 ドキュメント 7719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ント指定をする時に使える値です。また、その他の push_property() メソッドの新しい値として使うことができます。 AS_ ... ロパティが変更されたかの追跡を行わずに、対応する pop_property() メソッドが呼び出されるようになります。 formatter ...
https://man.plustar.jp/python/library/formatter.html - [similar]
PREV 1 2 3 4 NEXT