Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 76 for instance (0.045 sec.)
3. データモデル — Python 3.6.5 ドキュメント 8270
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... d a class method object, it is transformed into an instance method object whose __self__ attributes is C . Whe ... ション が入った辞書です。 クラスインスタンス (class instance) クラスインスタンスは、クラスオブジェクト (上記参照 ... を取得しようとすると適切な TypeError が送出され、 isinstance(obj, collections.Hashable) をチェックするとハッシュ ... に TypeError を送出する __hash__() を定義すると、 isinstance(obj, collections.Hashable) 呼び出しで誤ってハッシュ ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 8270
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... riptor within the class namespace. In other words, instances of descriptors can now know the attribute name of ... owner class: class IntField : def __get__ ( self , instance , owner ): return instance . __dict__ [ self . nam ... e ] def __set__ ( self , instance , value ): if not isinstance ( value , int ): rais ... rror ( f 'expecting integer in { self . name } ' ) instance . __dict__ [ self . name ] = value # this is the n ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
デスクリプタ HowTo ガイド — Python 3.6.5 ドキュメント 8104
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » デス ... that the first argument is reserved for the object instance. By Python convention, the instance reference is c ... D . f . __qualname__ 'D.f' # Dotted access from an instance calls __get__() which returns the # function wrapp ... method stores the underlying function, # the bound instance, and the class of the bound instance. >>> d . f . ...
https://man.plustar.jp/python/howto/descriptor.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 8104
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s][, return_annotation] ) ¶ Create a new Signature instance based on the instance replace was invoked on. It i ... sig = MySignature . from_callable ( min ) assert isinstance ( sig , MySignature ) バージョン 3.5 で追加. class ... default][, annotation] ) ¶ Create a new Parameter instance based on the instance replaced was invoked on. To ... It can also return descriptors objects instead of instance members. If the instance __dict__ is shadowed by a ...
https://man.plustar.jp/python/library/inspect.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 8104
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... iltin_types フラグが追加されました。 A ServerProxy instance is an object that manages communication with a rem ... he optional second argument is a transport factory instance; by default it is an internal SafeTransport instan ... ce for https: URLs and an internal HTTP Transport instance otherwise. The optional third argument is an encod ... ng parameters govern the use of the returned proxy instance. If allow_none is true, the Python constant None w ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 7757
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... gParser subclasses. Converters defined in a parser instance are inherited by its section proxies. 以下はプログ ... MIMEText constructor now accepts a charset.Charset instance. (Contributed by Claude Paroz and Berker Peksag in ... module. As opposed to creating a types.ModuleType instance directly, this new function will set the various i ... critical() , debug() , etc.), now accept exception instances as an exc_info argument, in addition to boolean v ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
21.1. webbrowser --- 便利なウェブブラウザコントローラー — Python 3.6.5 ドキュメ... 7577
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... します。 webbrowser. register ( name , constructor , instance=None ) ¶ ブラウザの種類 name を登録します。ブラウザ ... のブラウザのコントローラーを呼び出すことができます。 instance が指定されなかったり、 None なら、インスタンスが必 ... tructor がパラメータなしに呼び出されて作られます。 instance が指定されたら、 constructor は呼び出されないので、 ...
https://man.plustar.jp/python/library/webbrowser.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 7577
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... す。クラスインスタンスが自身への参照を持つ場合です: instance = SomeClass () instance . myself = instance 上の例 ... の 2 行のコードが実行された後では、 instance の参照カウントは 2 です。参照の一つ目は 'instance' ... 属性から来るものです。 このあとに続くコードが del instance だとしたら、何が起こるでしょうか? instance の参照カ ... を持つようになっています。それらのテキストは 'Spam' instance has no attribute 'eggs' や name 'eggs' is not defi ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 7411
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... compat32 ) ¶ If policy is specified (it must be an instance of a policy class) use the rules it specifies to u ... rride the default policy obtained from the message instance. This can be used to control some of the formattin ... mat. For more flexibility, instantiate a Generator instance and use its flatten() method directly. For example ... rride the default policy obtained from the message instance. This can be used to control some of the formattin ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 7411
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rride the default policy obtained from the message instance. This can be used to control some of the formattin ... rride the default policy obtained from the message instance. This can be used to control some of the formattin ... non- compat32 ) policies, the returned value is an instance of a subclass of email.headerregistry.BaseHeader . ... nal order. EmailMessage objects have the following instance attributes: preamble ¶ MIME ドキュメントの形式では ...
https://man.plustar.jp/python/library/email.message.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT