Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 30 for constructor (0.027 sec.)
- 12.2. copyreg --- pickle サポート関数を登録する — Python 3.6.5 ドキュメント 15466
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
関数か、クラスインスタンスかもしれません。 copyreg. constructor ( object ) ¶ object を有効なコンストラクタであると...
を発生します。 copyreg. pickle ( type , function , constructor=None ) ¶ function が型 type のオブジェクトに対する...
含んだタプルを返さなければなりません。 オプションの constructor パラメータが与えられた場合、それは呼び出し可能オブ...
するために使われます。 object がクラスの場合、または constructor が呼び出し可能でない場合には TypeError が発生します...
- https://man.plustar.jp/python/library/copyreg.html - [similar]
- 19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 10105
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
rict are interpreted as with the BytesParser class constructor. バージョン 3.2 で追加. バージョン 3.3 で変更: str...
licy are interpreted as with the BytesParser class constructor. バージョン 3.2 で追加. バージョン 3.3 で変更: str...
nd policy are interpreted as with the Parser class constructor. バージョン 3.3 で変更: strict 引数の削除。キーワー...
nd policy are interpreted as with the Parser class constructor. バージョン 3.3 で変更: strict 引数の削除。キーワー...
- https://man.plustar.jp/python/library/email.parser.html - [similar]
- 19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 10105
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
accepting the same keyword arguments as the class constructor and returning a new Policy instance that is a copy...
immutability property, the clone() method, and the constructor semantics. The constructor of a policy class can b...
es on the concrete class. A value specified in the constructor will override the default value for the correspond...
thus values for the following may be passed in the constructor of any policy class: max_line_length ¶ 行の終端文字...
- https://man.plustar.jp/python/library/email.policy.html - [similar]
- 21.1. webbrowser --- 便利なウェブブラウザコントローラー — Python 3.6.5 ドキュメ... 9309
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
トローラーを返します。 webbrowser. register ( name , constructor , instance=None ) ¶ ブラウザの種類 name を登録しま...
れなかったり、 None なら、インスタンスが必要な時には constructor がパラメータなしに呼び出されて作られます。 instanc...
e が指定されたら、 constructor は呼び出されないので、 None でかまいません。 この登...
- https://man.plustar.jp/python/library/webbrowser.html - [similar]
- 15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 8902
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
クトの作成 ¶ New hash objects are created by calling constructor functions: hashlib. blake2b ( data=b'' , digest_si...
は以下に述べるモジュール constants で利用できます。 Constructor functions also accept the following tree hashing p...
ALT_SIZE ¶ Salt length (maximum length accepted by constructors). blake2b. PERSON_SIZE ¶ blake2s. PERSON_SIZE ¶ P...
lization string length (maximum length accepted by constructors). blake2b. MAX_KEY_SIZE ¶ blake2s. MAX_KEY_SIZE ¶...
- https://man.plustar.jp/python/library/hashlib.html - [similar]
- 19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 8512
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ethod of the outfp passed to the BytesGenerator 's constructor. As a convenience, EmailMessage provides the metho...
ite method of the outfp passed to the Generator 's constructor. This provides just enough file-like API for Gener...
- https://man.plustar.jp/python/library/email.generator.html - [similar]
- 17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 8512
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
例外を定義します: class queue. Queue ( maxsize=0 ) ¶ Constructor for a FIFO queue. maxsize is an integer that sets...
s infinite. class queue. LifoQueue ( maxsize=0 ) ¶ Constructor for a LIFO queue. maxsize is an integer that sets...
- https://man.plustar.jp/python/library/queue.html - [similar]
- 21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 8512
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
eful with this message. Whatever was passed in the constructor as remoteaddr will be available as the _remoteaddr...
ョン 3.5 で追加: The decode_data and enable_SMTPUTF8 constructor parameters, and the kwargs parameter to process_me...
- https://man.plustar.jp/python/library/smtpd.html - [similar]
- What's New In Python 3.5 — Python 3.6.5 ドキュメント 8512
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
.) The number of workers in the ThreadPoolExecutor constructor is optional now. The default value is 5 times the...
ing a dictionary of converters in the ConfigParser constructor, or by defining them as methods in ConfigParser su...
avid Murray in bpo-24211 .) The mime.text.MIMEText constructor now accepts a charset.Charset instance. (Contribut...
name resolution, IPv6 addresses in the SMTPServer constructor, and have it successfully connect. (Contributed by...
- https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
- リフレクション — Python 3.6.5 ドキュメント 8317
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
返します。戻り値は、関数とメソッドに対しては "()", " constructor", " instance", " object" です。 PyEval_GetFuncName...
- https://man.plustar.jp/python/c-api/reflection.html - [similar]