Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 103 for size (0.028 sec.)
Pythonモジュール索引 — Python 3.6.5 ドキュメント 5783
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... thon. reprlib Alternate repr() implementation with size limits. resource (Unix) An interface to provide re ...
https://man.plustar.jp/python/py-modindex.html - [similar]
モジュールのインポート — Python 3.6.5 ドキュメント 5731
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... _frozen { char * name ; unsigned char * code ; int size ; }; const struct _frozen * PyImport_FrozenModules ...
https://man.plustar.jp/python/c-api/import.html - [similar]
オブジェクトプロトコル (object protocol) — Python 3.6.5 ドキュメント 5731
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 返り値の型が Py_hash_t になりました。この型は、 Py_ssize_t と同じサイズをもつ符号付き整数です。 Py_hash_t P ... 。どちらのパラメタも NULL であってはなりません。 Py_ssize_t PyObject_Length ( PyObject *o ) ¶ Py_ssize_t PyO ... bject_Size ( PyObject *o ) ¶ o の長さを返します。ただしオブジ ... 1 を返します。 Python の式 len(o) と同じです。 Py_ssize_t PyObject_LengthHint ( PyObject *o , Py_ssize_t d ...
https://man.plustar.jp/python/c-api/object.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 5731
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e オブジェクトは使用できません。 socket. recv ( bufsize [ , flags ] ) ¶ ソケットからデータを受信し、結果を ... クトで返します。一度に受信するデータは、最大でも bufsize で指定した量です。オプション引数 flags に指定するフ ... よびネットワークの現実に最大限マッチするように、 bufsize の値は比較的小さい2の累乗、たとえば 4096、にすべき ... EP 475 を参照してください)。 socket. recvfrom ( bufsize [ , flags ] ) ¶ ソケットからデータを受信し、結果を ...
https://man.plustar.jp/python/library/socket.html - [similar]
11.4. stat --- stat() の結果を解釈する — Python 3.6.5 ドキュメント 5731
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ST_GID ¶ ファイルの所持者のグループ ID。 stat. ST_SIZE ¶ 通常ファイルではバイトサイズ; いくつかの特殊ファ ...
https://man.plustar.jp/python/library/stat.html - [similar]
What's New In Python 3.1 — Python 3.6.5 ドキュメント 5731
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... cked by the garbage collector. This can reduce the size of collections and therefore the garbage collectio ... >>> sys . int_info sys.int_info(bits_per_digit=30, sizeof_digit=4) (Contributed by Mark Dickinson; bpo-425 ...
https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
はじめに — Python 3.6.5 ドキュメント 5680
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ことはありません; というのも、仮想メモリ空間には、( sizeof(Py_ssize_t) >= sizeof(void*) と仮定した場合) 少な ... _all ( PyObject * target , PyObject * item ) { Py_ssize_t i , n ; n = PyObject_Length ( target ); if ( n < ... ; i < n ; i ++ ) { PyObject * index = PyLong_FromSsize_t ( i ); if ( ! index ) return -1 ; if ( PyObject_ ... っています。 long sum_list ( PyObject * list ) { Py_ssize_t i , n ; long total = 0 , value ; PyObject * item ...
https://man.plustar.jp/python/c-api/intro.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 5680
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... alse 、 None Simple symbolic constants like sys.maxsize , which must start with the name of the module In ... _long(bitwise=True) 'l' long 'L' long long 'n' Py_ssize_t 'O' object 'O!' object(subclass_of='&PySomething ... emantics. Consider the following example: foo: Py_ssize_t = sys.maxsize - 1 sys.maxsize can have different ... d " max_widgets ", you may simply use it: foo: Py_ssize_t = max_widgets If the symbol isn't found in the c ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 5680
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... は省略): que = queue . Queue ( - 1 ) # no limit on size queue_handler = QueueHandler ( que ) handler = log ... h would be filtered out between processes. # # The size of the rotated files is made small so you can see ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
14.1. csv --- CSV ファイルの読み書き — Python 3.6.5 ドキュメント 5680
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 登録されている全ての表現形式を返します。 csv. field_size_limit ( [ new_limit ] ) ¶ パーサが許容する現在の最 ...
https://man.plustar.jp/python/library/csv.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT