Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 163 for TYPE (0.021 sec.)
循環参照ガベージコレクションをサポートする — Python 3.6.5 ドキュメント 6702
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ジェクトや、(数値や文字列のような) アトム型 (atomic type) への参照だけを記憶するような型では、ガベージコレク ... PyObject_GC_Track() を呼び出さなければなりません。 TYPE* PyObject_GC_New ( TYPE, PyTypeObject *type ) ¶ Py ... HAVE_GC のセットされたコンテナオブジェクト用です。 TYPE* PyObject_GC_NewVar ( TYPE, PyTypeObject *type , P ... HAVE_GC のセットされたコンテナオブジェクト用です。 TYPE* PyObject_GC_Resize ( TYPE, PyVarObject *op , Py_s ...
https://man.plustar.jp/python/c-api/gcsupport.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 6702
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... kw ) ¶ Look up a handler function based on the mimetype of msg (see next paragraph), call it, passing thro ... first one found: 完全な MIME 型を表す文字列 ( maintype/subtype ) maintype を表す文字列 空の文字列 If none ... duce a handler, raise a KeyError for the full MIME type. set_content ( msg , obj , *args , **kw ) ¶ If the ... maintype is multipart , raise a TypeError ; otherwise look ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 6702
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ools that use or will use the new syntax: mypy , pytype , PyCharm, etc. PEP 515: 数値リテラル内のアンダース ... housands separator for floating point presentation types and for integer presentation type 'd' . For integ ... er presentation types 'b' , 'o' , 'x' , and 'X' , underscores will be i ... new __classcell__ namespace entry is propagated to type.__new__ (as described in クラスオブジェクトの作成 ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 6576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ; pip install tox ) Consider using optional static type checking to make sure your type usage works in bot ... ose that work with binary data work with the bytes type from Python 3 (which is a subset of str in Python ... 2 and acts as an alias for bytes type in Python 2). Usually the biggest issue is realizi ... ng which methods exist on which types in Python 2 & 3 simultaneously (for text that's u ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 6576
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... がサポートされました。 traceback. print_exception ( etype , value , tb , limit=None , file=None , chain=True ... ll last): を出力します スタックトレースの後に例外 etype と value を出力します type(value) が SyntaxError で ... 力するときと同じです。 バージョン 3.5 で変更: 引数 etype は無視され、 value の型から推論されます。 tracebac ... ile=None , chain=True ) ¶ print_exception(sys.last_type, sys.last_value, sys.last_traceback, limit, file, ...
https://man.plustar.jp/python/library/traceback.html - [similar]
イテレータオブジェクト (iterator object) — Python 3.6.5 ドキュメント 6496
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... センチネル値が返されたときに反復処理を終了します。 PyTypeObject PySeqIter_Type ¶ PySeqIter_New() や、組み込み ... ェクトです。 int PySeqIter_Check ( op ) ¶ PySeqIter_Type の型が op のときに真を返します。 PyObject * PySeqI ... 定操作の際に IndexError を返したときに終了します。 PyTypeObject PyCallIter_Type ¶ PyCallIter_New() や、組み込 ... int PyCallIter_Check ( op ) ¶ op の型が PyCallIter_Type のときに真を返します。 PyObject * PyCallIter_New ( ...
https://man.plustar.jp/python/c-api/iterator.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 6325
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... レスタイプに依存します。一般的なタプルの形式は (addr_type, v1, v2, v3 [, scope]) で、それぞれは次の通りです: ... addr_type は TIPC_ADDR_NAMESEQ , TIPC_ADDR_NAME , TIPC_ADDR_ ... TIPC_CLUSTER_SCOPE , TIPC_NODE_SCOPE の1つ。 addr_type が TIPC_ADDR_NAME の場合、 v1 はサーバータイプ、 v ... identifier)、そして v3 は 0 であるべきです。 addr_type が TIPC_ADDR_NAMESEQ の場合、 v1 はサーバータイプ、 ...
https://man.plustar.jp/python/library/socket.html - [similar]
タプルオブジェクト (tuple object) — Python 3.6.5 ドキュメント 6291
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... タイプは Python のタプルオブジェクトを表現します。 PyTypeObject PyTuple_Type ¶ この PyTypeObject のインスタン ... 定のstruct sequence 型を生成しなければなりません。 PyTypeObject * PyStructSequence_NewType ( PyStructSequenc ... e_New() で生成できます。 void PyStructSequence_InitType ( PyTypeObject *type , PyStructSequence_Desc *desc ... ) ¶ struct sequence 型である type を desc をもとにその場で初期化します。 int PyStruc ...
https://man.plustar.jp/python/c-api/tuple.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 6291
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 16. 汎用オペレーティングシステムサービス » 16.16. ctypes --- Pythonのための外部関数ライブラリ ¶ ctypes は ... n でラップするために使うことができます。 16.16.1. ctypesチュートリアル ¶ 注意: このチュートリアルのコードサ ... を入れてあります。 注意: いくつかのコードサンプルで ctypes の c_int 型を参照しています。 sizeof(long) == siz ... ードする ¶ 動的リンクライブラリをロードするために、 ctypes は cdll をエクスポートします。 Windows では windl ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 6291
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... vides customized header objects for various header types, but also provides an extension mechanism for app ... lications to add their own custom header types. When using any of the policy objects derived fro ... an additional base class that is determined by the type of the header. For example, many headers have the ... ues. See the errors module for a discussion of the types of defects that may be reported. max_count ¶ The ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT