Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 40 for block (0.036 sec.)
Argument Clinic How-To — Python 3.6.5 ドキュメント 15649
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... c "ブロック" と呼ばれます。 Argument Clinic はその block をパースすると、出力を生成します。 その出力は、その ... Cソースファイルの該当する block の直後に挿入され、チェックサムを含むコメントで終了 ... します。 その結果 Argument Clinick block は次のようになります: /*[clinic input] ... clinic ... ていない場合、出力も変化しません。 Argument Clinick block の出力部分を修正してはいけません。 出力が望みどおり ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 11701
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ms that can be placed in the queue. Insertion will block once this size has been reached, until queue items ... ms that can be placed in the queue. Insertion will block once this size has been reached, until queue items ... ックしないことは保証されません。 Queue. put ( item , block=True , timeout=None ) ¶ item をキューに入れます。 ... もしオプション引数 block が真で timeout が None (デフォルト) の場合は、必要 ...
https://man.plustar.jp/python/library/queue.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 9111
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ns available for more work" ) # exiting the 'with'-block has stopped the pool print ( "Now the pool is clos ... シングの特性上、これは信用できません。 put ( obj [ , block [ , timeout ] ] ) ¶ キューの中へ obj を追加します。 ... オプションの引数 block が True (デフォルト) 且つ timeout が None (デフォル ... なかったら queue.Full 例外を発生させます。それ以外 ( block が False ) で、空きスロットがすぐに利用可能な場合は ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 9002
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... are reading the message from a stream which might block waiting for more input (such as reading an email m ... he text of an email message from a source that can block (such as a socket). The BytesFeedParser can of cou ... . The bytes contained in fp must be formatted as a block of RFC 5322 (or, if utf8 is True , RFC 6532 ) styl ... ionally preceded by an envelope header. The header block is terminated either by the end of the data or by ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 8893
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... では、あなたは今ではこう書くことが出来ます: try : block - 1 ... except Exception1 : handler - 1 ... except ... Exception2 : handler - 2 ... else : else - block finally : final - block block-1 内のコードが実行さ ... 実行されます、以下同文。例外が起こらなければ、 else-block が実行されます。 以前に何が起こったのかに拠らず、コ ... ードブロック完了時やどれかの例外が処理されれば final-block が実行されます。例外ハンドラ内や else-block でエラ ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
カプセル — Python 3.6.5 ドキュメント 8799
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... void* PyCapsule_Import ( const char *name , int no_block ) ¶ モジュールのカプセル属性から Cオブジェクトへの ... はこの文字列に正確に一致しなければなりません。 no_block が真の時、モジュールを( PyImport_ImportModuleNoBlo ... ck() を使って) ブロックせずにインポートします。 no_block が偽の時、モジュールは ( PyImport_ImportModule() を ... psule_Import() failed to import the module, and no_block was true, no exception is set. int PyCapsule_IsVal ...
https://man.plustar.jp/python/c-api/capsule.html - [similar]
メモリ管理 — Python 3.6.5 ドキュメント 8581
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... he regularly manipulates object pointers to memory blocks inside that heap. The allocation of heap space fo ... void PyMem_RawFree ( void *p ) ¶ Frees the memory block pointed to by p , which must have been returned by ... Malloc(n) ; else if n is equal to zero, the memory block is resized but is not freed, and the returned poin ... void PyObject_Free ( void *p ) ¶ Frees the memory block pointed to by p , which must have been returned by ...
https://man.plustar.jp/python/c-api/memory.html - [similar]
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 8487
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... c\x95\x0fK\x94\x06' >>> m . digest_size 32 >>> m . block_size 64 もっと簡潔に書くと、このようになります: >> ... digest_size ¶ 生成されたハッシュのバイト数。 hash. block_size ¶ 内部で使われるハッシュアルゴリズムのブロック ... るべきです。 n is the CPU/Memory cost factor, r the block size, p parallelization factor and maxmem limits m ... b >>> FILES_HASH_PERSON = b 'MyApp Files Hash' >>> BLOCK_HASH_PERSON = b 'MyApp Block Hash' >>> h = blake2b ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
19.1.5. email.errors: 例外及び欠陥クラス — Python 3.6.5 ドキュメント 8066
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... さい。 InvalidBase64PaddingDefect -- When decoding a block of base64 encoded bytes, the padding was not corre ... . InvalidBase64CharactersDefect -- When decoding a block of base64 encoded bytes, characters outside the ba ...
https://man.plustar.jp/python/library/email.errors.html - [similar]
18.8. signal --- 非同期イベントにハンドラを設定する — Python 3.6.5 ドキュメント 7957
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ), handler ( SIG_DFL , SIG_IGN ) and sigmask ( SIG_BLOCK , SIG_UNBLOCK , SIG_SETMASK ) related constants li ... ーが発火したときに SIGPROF を送ります。 signal. SIG_BLOCK ¶ pthread_sigmask() の how 引数に渡せる値で、シグナ ... を意味します。 バージョン 3.3 で追加. signal. SIG_UNBLOCK ¶ pthread_sigmask() の how 引数に渡せる値で、シグナ ... 振る舞いは how に依存して以下のようになります。 SIG_BLOCK : mask で指定されるシグナルが現時点のシグナルマスク ...
https://man.plustar.jp/python/library/signal.html - [similar]
PREV 1 2 3 4 NEXT