Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 273 for THE (0.085 sec.)
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 5946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... d delimiter tokens and Ellipsis are returned using the generic OP token type. The exact type can be deter ... mined by checking the exact_type property on the named tuple returned fr ... generator )です: tokenize. tokenize ( readline ) ¶ The tokenize() generator requires one argument, readli ... e , which must be a callable object which provides the same interface as the io.IOBase.readline() method ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 5927
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... It can be converted to Python 3.x code via 2to3 on the command line: $ 2to3 example.py A diff against the ... iginal source file is printed. 2to3 can also write the needed modifications right back to the source file ... . (A backup of the original file is made unless -n is also given.) Wr ... iting the changes back is enabled with the -w flag: $ 2to3 - ...
https://man.plustar.jp/python/library/2to3.html - [similar]
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 5927
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... インストールされている Python のために PATH 変数や PATHEXT 変数が設定してある場合は次のコマンドでも実行でき ... ositional arguments: ENV_DIR A directory to create the environment in. optional arguments: -h, --help sho ... help message and exit --system-site-packages Give the virtual environment access to the system site-pack ... ages dir. --symlinks Try to use symlinks rather than copies, when symlinks are not the default fo ...
https://man.plustar.jp/python/library/venv.html - [similar]
18.7. asynchat --- 非同期ソケットコマンド/レスポンスハンドラ — Python 3.6.5 ド... 5917
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... () , which should return data to be transmitted on the channel. The producer indicates exhaustion ( i.e. ... s no more data) by having its more() method return the empty bytes object. At this point the async_chat o ... bject removes the producer from the queue and starts using the next ... producer, if any. When the producer queue is empty the handle_write() method ...
https://man.plustar.jp/python/library/asynchat.html - [similar]
DTrace と SystemTap で CPython を測定する — Python 3.6.5 ドキュメント 5897
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » DTra ... lable DTrace probes by running a Python process in the background and listing all probes made available b ... y the Python provider: $ python3.6 -q & $ sudo dtrace -l ... maybe_dtrace_line line On Linux, you can verify if the SystemTap static markers are present in the built ... x00000000008d6bea Arguments: 8@%rbp 8@%r12 -4@%eax The above metadata contains information for SystemTap ...
https://man.plustar.jp/python/howto/instrumentation.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 5897
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ct method which by default returns None . See also the definition of コンテキストマネージャ型 . バージョン ... uppress ( FileNotFoundError ): os . remove ( 'someotherfile.tmp' ) これは以下と等価です: try : os . remov ... FileNotFoundError : pass try : os . remove ( 'someotherfile.tmp' ) except FileNotFoundError : pass このコ ... nager for temporarily redirecting sys.stdout to another file or file-like object. This tool adds flexibil ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
19.1.5. email.errors: 例外及び欠陥クラス — Python 3.6.5 ドキュメント 5897
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... xception email.errors. MessageParseError ¶ This is the base class for exceptions raised by the Parser cla ... ssageError . This class is also used internally by the parser used by headerregistry . exception email.er ... ¶ Raised under some error conditions when parsing the RFC 5322 headers of a message, this class is deriv ... ed from MessageParseError . The set_boundary() method will raise this error if the ...
https://man.plustar.jp/python/library/email.errors.html - [similar]
24.3. shlex --- 単純な字句解析 — Python 3.6.5 ドキュメント 5897
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... or subclass instance is a lexical analyzer object. The initialization argument, if present, specifies whe ... ent is given, input will be taken from sys.stdin . The second optional argument is a filename string, whi ... ch sets the initial value of the infile attribute. If the inst ... .stdin , this second argument defaults to "stdin". The posix argument defines the operational mode: when ...
https://man.plustar.jp/python/library/shlex.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 5878
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... tion required = True , # make it a required argument help = 'login as user' ) コマンド文字列とともにこのパ ... >>> sysconfig . get_config_var ( 'SOABI' ) # find the version tag 'cpython-32mu' >>> sysconfig . get_con ... fig_var ( 'EXT_SUFFIX' ) # find the full filename extension '.cpython-32mu.so' 参考 PE ... ションは変更の必要はありません。(---訳注: 原文は「If the app already used strings for headers ...」。native ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 5829
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... pe , * err_value , * err_traceback ; /* This saves the current exception state */ PyErr_Fetch ( & err_typ ... k ); else Py_DECREF ( cbresult ); /* This restores the saved exception state */ PyErr_Restore ( err_type ... / getiterfunc tp_iter ; iternextfunc tp_iternext ; These functions provide support for the iterator proto ... col. Both handlers take exactly one parameter, the instance for which they are being called, and retu ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT