Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 274 for IN (0.118 sec.)
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 4965
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 処理のためのパッケージ ¶ ソースコード: Lib/email/__init__.py email パッケージは、電子メールメッセージを管 ... rall structure of the email package can be divided into three major components, plus a fourth component ... el" that represents email messages. An application interacts with the package primarily through the obje ... ct model interface defined in the message sub-module. The appl ...
https://man.plustar.jp/python/library/email.html - [similar]
3. データモデル — Python 3.6.5 ドキュメント 4965
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 現在の CPython 実装では参照カウント(reference-counting) 方式を使っており、(オプションとして) 循環参照を行 ... るよう強く奨めます。この操作をする際には、' try ... finally ' 文や、 ' with ' 文を使うと便利です。 他のオブ ... もつオブジェクトもあります; これらは コンテナ (container) と呼ばれます。コンテナオブジェクトの例として、タ ... 動小数点数、複素数の間で区別を行っています: numbers.Integral (整数) 整数型は、整数(正の数および負の数)を表 ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 4936
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 OpenSSL は、すべてのモダンな Unix システム、 Windows 、 Mac OS X 、その他幾つかの OpenSSL がインスト ... で受け取る必要があるデータが不足した場合に non-blocking SSL socket によって送出される SSLError サブクラス ... が送信する必要があるデータが不足した場合に non-blocking SSL socket によって送出される SSLError サブクラス ... S 1.3 protocol will be available with PROTOCOL_TLS in OpenSSL >= 1.1.1. There is no dedicated PROTOCOL c ...
https://man.plustar.jp/python/library/ssl.html - [similar]
8.6. bisect --- 配列二分法アルゴリズム — Python 3.6.5 ドキュメント 4878
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のエントリーよりも前(左)になります。戻り値は、 list.insert() の第一引数として使うのに適しています。 a はす ... 入点 i は、配列 a を二つに分け、 all(val < x for val in a[lo:i]) が左側に、 all(val >= x for val in a[i:hi ... 点 i は、配列 a を二つに分け、 all(val <= x for val in a[lo:i]) が左側に、 all(val > x for val in a[i:hi] ... ) が右側になるようにします。 bisect. insort_left ( a , x , lo=0 , hi=len(a) ) ¶ x を a にソ ...
https://man.plustar.jp/python/library/bisect.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 4878
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 節をご覧ください。 subprocess. run ( args , * , stdin=None , input=None , stdout=None , stderr=None , sh ... lse , cwd=None , timeout=None , check=False , encoding=None , errors=None ) ¶ args で指定されたコマンドを ... コンストラクターの内容と同じになります - timeout 、 input および check は除き、この関数の全引数は Popen イ ... 断されたあと TimeoutExpired が再び送出されます。 The input argument is passed to Popen.communicate() and t ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 4878
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... n » What's New in Python 2.6 ¶ 著者: A.M. Kuchling (amk at amk.ca) こ ... 来ることを出来るだけ試みました。それには future_builtins モジュールに互換関数を、また、Python 3 でサポート ... すための -3 スイッチ を追加しています。 multiprocessing や json といった、いくつか重要な新しいパッケージが ... る PEP を参照してください。可能な限り、 "What's New in Python" は各変更の bug や patch に対してリンクして ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
マップ型プロトコル (mapping protocol) — Python 3.6.5 ドキュメント 4849
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... (abstract objects layer) » マップ型プロトコル (mapping protocol) ¶ int PyMapping_Check ( PyObject *o ) ¶ ... Return 1 if the object provides mapping protocol, and 0 otherwise. This function always s ... ucceeds. Py_ssize_t PyMapping_Size ( PyObject *o ) ¶ Py_ssize_t PyMapping_Lengt ... h ( PyObject *o ) ¶ Returns the number of keys in object o on success, and -1 on failure. For object ...
https://man.plustar.jp/python/c-api/mapping.html - [similar]
シーケンス型プロトコル (sequence protocol) — Python 3.6.5 ドキュメント 4849
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... er) » シーケンス型プロトコル (sequence protocol) ¶ int PySequence_Check ( PyObject *o ) ¶ Return 1 if th ... の式 o * count と同じです。 PyObject * PySequence_InPlaceConcat ( PyObject *o1 , PyObject *o2 ) ¶ Retur ... nation) を返し、失敗すると NULL を返します。 o1 が in-place 演算をサポートする場合、in-place 演算を行いま ... n の式 o1 += o2 と同じです。 PyObject * PySequence_InPlaceRepeat ( PyObject *o , Py_ssize_t count ) ¶ Re ...
https://man.plustar.jp/python/c-api/sequence.html - [similar]
プログラミング FAQ — Python 3.6.5 ドキュメント 4849
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... あり、グラフィカルなデバッガを含んでいます。 PythonWin は、pdb をベースとした GUI デバッガを含む Python I ... DE です。Pythonwin デバッガは、ブレークポイントの色付けや非 Pythonwin ... ッグなどのたくさんの素敵な機能を持っています。Pythonwin は Python for Windows Extensions プロジェクトの一部 ... ェクトブラウザのような多くのビュー、継承構造、doc string から生成される html ドキュメント、高度なデバッガ、 ...
https://man.plustar.jp/python/faq/programming.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 4849
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ード、 example.py を示します: def greet ( name ): print "Hello, {0} !" . format ( name ) print "What's yo ... ur name?" name = raw_input () greet ( name ) It can be converted to Python ... 3.x code via 2to3 on the command line: $ 2to3 example.py A diff against the original so ... urce file is printed. 2to3 can also write the needed modifications r ...
https://man.plustar.jp/python/library/2to3.html - [similar]