Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 103 for create (0.090 sec.)
What's New In Python 3.6 — Python 3.6.5 ドキュメント 6493
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... alled on the base class whenever a new subclass is created: class PluginBase : subclasses = [] def __init_su ... g or closed. (Contributed by Yury Selivanov.) loop.create_server() メソッドはホストのリストを受け取れるように ... りました。 (Contributed by Yann Sionneau.) New loop.create_future() method to create Future objects. This all ... it possible to customize the names of the threads created by the pool. (Contributed by Gregory P. Smith in ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
11.6. tempfile --- 一時ファイルやディレクトリの作成 — Python 3.6.5 ドキュメント 6390
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 用法のいくつかの例を挙げます: >>> import tempfile # create a temporary file and write some data to it >>> fp ... e the file, it will be removed >>> fp . close () # create a temporary file using a context manager >>> with ... llo world!' >>> # file is now closed and removed # create a temporary directory using the context manager >> ... TemporaryDirectory () as tmpdirname : ... print ( 'created temporary directory' , tmpdirname ) >>> # directo ...
https://man.plustar.jp/python/library/tempfile.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 6286
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ..} のような形式で表します いくつかの使用例: >>> # create the top-level parser >>> parser = argparse . Argum ... subparsers ( help = 'sub-command help' ) >>> >>> # create the parser for the "a" command >>> parser_a = subp ... 'bar' , type = int , help = 'bar help' ) >>> >>> # create the parser for the "b" command >>> parser_b = subp ... s ): ... print ( '(( %s ))' % args . z ) ... >>> # create the top-level parser >>> parser = argparse . Argum ...
https://man.plustar.jp/python/library/argparse.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 6286
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , otherwise leave the boundary to be automatically created when it is needed (for example, when the message ... , otherwise leave the boundary to be automatically created when it is needed (for example, when the message ... , otherwise leave the boundary to be automatically created when it is needed (for example, when the message ... , **kw ) ¶ If the message is a multipart/related , create a new message object, pass all of the arguments to ...
https://man.plustar.jp/python/library/email.message.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 6286
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... l.SSLContext.load_cert_chain() instead, or let ssl.create_default_context() select the system's trusted CA c ... セージ群を new_mailbox の末尾にコピーします。 IMAP4. create ( mailbox ) ¶ mailbox と名づけられた新たなメールボ ... ch flags. There are non-Python programs which also create such tags. Although it is an RFC violation and IMA ... lib nonetheless continues to allow such tags to be created for backward compatibility reasons, and as of pyt ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 6286
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... empty に設定されます。 bind ( *args , **kwargs ) ¶ Create a mapping from positional and keyword arguments to ... replace ( *[, parameters][, return_annotation] ) ¶ Create a new Signature instance based on the instance rep ... e ( *[, name][, kind][, default][, annotation] ) ¶ Create a new Parameter instance based on the instance rep ... am ) 'foo=42' >>> str ( param . replace ()) # Will create a shallow copy of 'param' 'foo=42' >>> str ( param ...
https://man.plustar.jp/python/library/inspect.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 6286
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... g a server requires several steps. First, you must create a request handler class by subclassing the BaseReq ... d threading versions of each type of server can be created using these mix-in classes. For instance, Threadi ... ngUDPServer is created as follows: class ThreadingUDPServer ( ThreadingM ... e other methods. A new instance of the subclass is created for each request. setup ( ) ¶ handle() メソッドよ ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
25.2. tkinter.ttk --- Tk のテーマ付きウィジェット — Python 3.6.5 ドキュメント 6286
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 'Text' ) mbtn . pack () root . mainloop () element_create ( elementname , etype , *args , **kw ) ¶ 与えられた ... etype の値として "from" が使われた場合は、 element_create() が現在の要素を複製します。 args は要素の複製元の ... elementname のオプションのリストを返します。 theme_create ( themename , parent=None , settings=None ) ¶ 新し ... で値はさらに 'configure', 'map', 'layout', 'element create' をキーとして持ち、その値はそれぞれ Style.configur ...
https://man.plustar.jp/python/library/tkinter.ttk.html - [similar]
例外処理 — Python 3.6.5 ドキュメント 6080
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... るために利用します。 PyObject * PyUnicodeDecodeError_Create ( const char *encoding , const char *object , Py_s ... ドされた文字列です。 PyObject * PyUnicodeEncodeError_Create ( const char *encoding , const Py_UNICODE *object ... れた文字列です。 PyObject * PyUnicodeTranslateError_Create ( const Py_UNICODE *object , Py_ssize_t length , P ...
https://man.plustar.jp/python/c-api/exceptions.html - [similar]
Logging HOWTO — Python 3.6.5 ドキュメント 6080
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... 簡単なフォーマッタを設定しています: import logging # create logger logger = logging . getLogger ( 'simple_exam ... ple' ) logger . setLevel ( logging . DEBUG ) # create console handler and set level to debug ch = loggin ... reamHandler () ch . setLevel ( logging . DEBUG ) # create formatter formatter = logging . Formatter ( ' %(as ... logging . config . fileConfig ( 'logging.conf' ) # create logger logger = logging . getLogger ( 'simpleExamp ...
https://man.plustar.jp/python/howto/logging.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT