Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 76 for stdin (0.026 sec.)
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 17039
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... PI 節をご覧ください。 subprocess. run ( args , * , stdin=None , input=None , stdout=None , stderr=None , sh ... o Popen.communicate() and thus to the subprocess's stdin. If used it must be a byte sequence, or a string i ... nternal Popen object is automatically created with stdin=PIPE , and the stdin argument may not be used as w ... d, or universal_newlines is true, file objects for stdin, stdout and stderr are opened in text mode using t ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
18.5.6. サブプロセス — Python 3.6.5 ドキュメント 10486
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... oroutine asyncio. create_subprocess_exec ( *args , stdin=None , stdout=None , stderr=None , loop=None , lim ... coroutine asyncio. create_subprocess_shell ( cmd , stdin=None , stdout=None , stderr=None , loop=None , lim ... Loop. subprocess_exec ( protocol_factory , *args , stdin=subprocess.PIPE , stdout=subprocess.PIPE , stderr= ... サブクラスを作成しなくてはなりません。 その他の引数: stdin : connect_write_pipe() を使用してサブプロセスの標準 ...
https://man.plustar.jp/python/library/asyncio-subprocess.html - [similar]
8. エラーと例外 — Python 3.6.5 ドキュメント 9323
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ょう: >>> while True print ( 'Hello world' ) File "<stdin>" , line 1 while True print ( 'Hello world' ) ^ Sy ... 1 / 0 ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> ZeroDivisionError : divis ... spam * 3 Traceback (most recent call last): File "<stdin>" , line 1 , in <module> NameError : name 'spam' i ... '2' + 2 Traceback (most recent call last): File "<stdin>" , line 1 , in <module> TypeError : Can't convert ...
https://man.plustar.jp/python/tutorial/errors.html - [similar]
24.2. cmd --- 行指向のコマンドインタープリタのサポート — Python 3.6.5 ドキュメ... 8256
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 役に立ちます。 class cmd. Cmd ( completekey='tab' , stdin=None , stdout=None ) ¶ Cmd インスタンス、あるいはサ ... コマンド補完は自動的に行われます。 オプション引数の stdin と stdout には、Cmd またはそのサブクラスのインスタ ... するファイルオブジェクトを指定します。省略時には sys.stdin と sys.stdout が使用されます。 引数に渡した stdin ... ut 属性を False にセットしてください。そうしないと stdin は無視されます。 24.2.1. Cmdオブジェクト ¶ Cmd イン ...
https://man.plustar.jp/python/library/cmd.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 8256
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nction ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> File "ctypes.py" , line 2 ... 32 [ 0 ] Traceback (most recent call last): File "<stdin>" , line 1 , in <module> File "ctypes.py" , line 3 ... ( None ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> ValueError : Procedure pr ... "spam" ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> ValueError : Procedure pr ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
11.3. fileinput --- 複数の入力ストリームをまたいだ行の繰り返し処理をサポートする... 8256
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... たいで繰り返します。もし該当するものがなければ、 sys.stdin がデフォルトとして扱われます。ファイル名として '-' ... が与えられた場合も、 sys.stdin に置き換えられます。別のファイル名リストを使いたい ... れました; それは現在 OSError のエイリアスです。 sys.stdin が2回以上使われた場合は、2回目以降は行を返しません ... タラクティブに利用している時や明示的にリセット ( sys.stdin.seek(0) を使う) を行った場合はその限りではありませ ...
https://man.plustar.jp/python/library/fileinput.html - [similar]
35.6. termios --- POSIX スタイルの端末制御 — Python 3.6.5 ドキュメント 7951
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 記述子 fd を最初の引数としてとります。この値は、 sys.stdin.fileno() が返すような整数のファイル記述子でも、 sy ... s.stdin 自体のような file object でもかまいません。 このモ ... = "Password: " ): import termios , sys fd = sys . stdin . fileno () old = termios . tcgetattr ( fd ) new = ...
https://man.plustar.jp/python/library/termios.html - [similar]
8.12. reprlib --- もう一つの repr() の実装 — Python 3.6.5 ドキュメント 7730
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... apper ( self , obj , level ): if obj . name in { '<stdin>' , '<stdout>' , '<stderr>' }: return obj . name r ... j ) aRepr = MyRepr () print ( aRepr . repr ( sys . stdin )) # prints '<stdin>' 関連キーワード: repr , Repr ...
https://man.plustar.jp/python/library/reprlib.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 7730
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... プション引数 filters と quiet test.support. captured_stdin ( ) ¶ test.support. captured_stdout ( ) ¶ test.sup ... "error \n " 入力ストリ-ムの使用例: with captured_stdin () as stdin : stdin . write ( 'hello \n ' ) stdin ... seek ( 0 ) # call test code that consumes from sys.stdin captured = input () self . assertEqual ( captured ...
https://man.plustar.jp/python/library/test.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 7730
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 理します。 class wsgiref.handlers. CGIHandler ¶ sys.stdin 、 sys.stdout 、 sys.stderr そして os.environ 経由 ... 2 で追加. class wsgiref.handlers. BaseCGIHandler ( stdin , stdout , stderr , environ , multithread=True , m ... いでしょう。 class wsgiref.handlers. SimpleHandler ( stdin , stdout , stderr , environ , multithread=True , m ... Handler のサブクラスです。これは __init__() 、 get_stdin() 、 get_stderr() 、 add_cgi_vars() 、 _write() 、 ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT