Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 129 for call (0.128 sec.)
用語集 — Python 3.6.5 ドキュメント 5531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... 当てられます。割り当てを行う規則については 呼び出し (call) を参照してください。シンタックスにおいて実引数を表 ... en using iterables, it is usually not necessary to call iter() or deal with iterator objects yourself. The ... for statement does that automatically for you, creating a temporary unnamed variable to ... トや順序比較のための値を返す呼び出し可能オブジェクト(callable)です。例えば、 locale.strxfrm() をキー関数に使 ...
https://man.plustar.jp/python/glossary.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 5531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... drummers drumming, 11 ... 10 ...' ) >>> iterator <callable_iterator object at 0x...> >>> for match in ite ... re . compile ( r '\d+' ) >>> p . sub ( hexrepl , 'Call 65490 for printing, 49152 for user code.' ) 'Call ...
https://man.plustar.jp/python/howto/regex.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 5531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ce some print statements can be parsed as function calls or statements, 2to3 cannot always read files cont ... 下のマッピングが行われます。 対象 変換先 operator.isCallable(obj) hasattr(obj, '__call__') operator.sequenc ...
https://man.plustar.jp/python/library/2to3.html - [similar]
18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 5531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... late the reception of data from the network loop . call_soon ( wsock . send , 'abc' . encode ()) # Wait fo ... 録 前のトピックへ 18.5.4. Transports and protocols (callback based API) 次のトピックへ 18.5.6. サブプロセス ...
https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 5531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... _response() should be followed by an end_headers() call. バージョン 3.3 で変更: Headers are stored to an i ... nternal buffer and end_headers() needs to be called explicitly. send_header ( keyword , value ) ¶ Ad ... ifying its value. Note that, after the send_header calls are done, end_headers() MUST BE called in order t ... headers in the response) to the headers buffer and calls flush_headers() . バージョン 3.2 で変更: バッファ ...
https://man.plustar.jp/python/library/http.server.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 5531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nly a limited number, and they will not be automatically unlinked until the next reboot.) 開始方式はメイン ... er-2: Process PoolWorker-3: Traceback (most recent call last): AttributeError : 'module' object has no att ... 。引数 target には、 run() メソッドから呼び出される callable オブジェクトを渡します。この引数はデフォルトで ... 複数回呼び出すことができます。 register ( typeid [ , callable [ , proxytype [ , exposed [ , method_to_typeid ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 5531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... an NNTP server on the local machine and intend to call reader-specific commands, such as group . If you g ... ring the NNTP object initialization and separately calling this function is unnecessary. To force authenti ... ng the required headers. The post() method automatically escapes lines beginning with . and appends the te ... it. If file is a file object , then it will start calling write() on it to store the lines of the command ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 5531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , the result will also be a string object, and the call may raise a UnicodeDecodeError. If the path is a b ... criptor. Perform the equivalent of a stat() system call on the given path. path may be specified as either ... れるからです。 By default, errors from the scandir() call are ignored. If optional argument onerror is speci ... fied, it should be a function; it will be called with one argument, an OSError instance. It can r ...
https://man.plustar.jp/python/library/os.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 5531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... bar \n " , flags = re . M ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> ... V ... h ( "718ak" ) . group ( 1 ) Traceback (most recent call last): File "<pyshell#23>" , line 1 , in <module> ...
https://man.plustar.jp/python/library/re.html - [similar]
11.4. stat --- stat() の結果を解釈する — Python 3.6.5 ドキュメント 5531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t os , sys from stat import * def walktree ( top , callback ): '''recursively descend the directory tree r ... ooted at top, calling the callback function for each regular file''' ... a directory, recurse into it walktree ( pathname , callback ) elif S_ISREG ( mode ): # It's a file, call t ... he callback function callback ( pathname ) else : # Unknow ...
https://man.plustar.jp/python/library/stat.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 NEXT