Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 27 for Shell (0.028 sec.)
25.5. IDLE — Python 3.6.5 ドキュメント 15059
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、出力、エラーメッセージの色付け機能を持った Python shell (対話的インタプリタ) ウィンドウ 多段 Undo、 Python ... E には 2 種類のメインウィンドウのタイプがあります。Shell ウィンドウ、Editor ウィンドウです。Editor ウィンド ... [訳語]" の様式とします。 ) 25.5.1.1. File メニュー (Shell ウィンドウ、Editor ウィンドウ) ¶ New File [新規ファ ... にあるクラス、関数、メソッドを木構造で可視化します。 Shell からの場合は、先にモジュール選択のダイアログが開き ...
https://man.plustar.jp/python/library/idle.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 11240
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... in=None , input=None , stdout=None , stderr=None , shell=False , cwd=None , timeout=None , check=False , en ... ], returncode=0) >>> subprocess . run ( "exit 1" , shell = True , check = True ) Traceback (most recent cal ... を見ることができるためです。単一の文字列を渡す場合、 shell は True でなければなりません (以下を参照)。もしくは ... 性は Popen.communicate() メソッドで更新されません。 shell が True なら、指定されたコマンドはシェルによって実 ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
25. Tk を用いたグラフィカルユーザインターフェイス — Python 3.6.5 ドキュメント 10549
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .5. IDLE 25.5.1. メニュー 25.5.1.1. File メニュー (Shell ウィンドウ、Editor ウィンドウ) 25.5.1.2. Edit メニ ... ュー (Shell ウィンドウ、Editor ウィンドウ) 25.5.1.3. Format メ ... ニュー (Shell ウィンドウ、Editor ウィンドウ) 25.5.1.4. Run メニュ ... ー (Editor ウィンドウのみ) 25.5.1.5. Shell メニュー (Shell ウィンドウのみ) 25.5.1.6. Debug メ ...
https://man.plustar.jp/python/library/tk.html - [similar]
18.5.6. サブプロセス — Python 3.6.5 ドキュメント 9545
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ルーチン です。 coroutine asyncio. create_subprocess_shell ( cmd , stdin=None , stdout=None , stderr=None , l ... す。他の引数については AbstractEventLoop.subprocess_shell() を参照してください。 Process のインスタンスを返し ... )。これは標準ライブラリの subprocess.Popen クラスが shell=False で呼び出され、文字列のリストが第 1 引数として ... してはならない bufsize 、 universal_newlines および shell を除き、すべて解釈されずに subprocess.Popen に渡さ ...
https://man.plustar.jp/python/library/asyncio-subprocess.html - [similar]
35.8. pty --- 擬似端末ユーティリティ — Python 3.6.5 ドキュメント 8492
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = 'typescript' ) options = parser . parse_args () shell = sys . executable if options . use_python else os ... . environ . get ( 'SHELL' , 'sh' ) filename = options . filename mode = 'ab ... ' % time . asctime ()) . encode ()) pty . spawn ( shell , read ) script . write (( 'Script done on %s \n ' ...
https://man.plustar.jp/python/library/pty.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 8311
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... er standard input or a list of files. fnmatch Unix shell style filename pattern matching. formatter 非推奨: ... tilingual internationalization services. glob Unix shell style pathname pattern expansion. grp (Unix) The g ... functions. pipes (Unix) A Python interface to Unix shell pipelines. pkgutil Utilities for the import system ... ersistence. shlex Simple lexical analysis for Unix shell-like languages. shutil High-level file operations, ...
https://man.plustar.jp/python/py-modindex.html - [similar]
11.7. glob --- Unix 形式のパス名のパターン展開 — Python 3.6.5 ドキュメント 8015
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ed pattern according to the rules used by the Unix shell, although results are returned in arbitrary order. ... ions in concert, and not by actually invoking a subshell. Note that unlike fnmatch.fnmatch() , glob treats ... with a dot ( . ) as special cases. (For tilde and shell variable expansion, use os.path.expanduser() and o ...
https://man.plustar.jp/python/library/glob.html - [similar]
24.2. cmd --- 行指向のコマンドインタープリタのサポート — Python 3.6.5 ドキュメ... 7899
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の特別な場合として、文字 '!' で始まる行はメソッド do_shell() へディスパッチします(このようなメソッドが定義され ... import cmd , sys from turtle import * class TurtleShell ( cmd . Cmd ): intro = 'Welcome to the turtle shel ... arg . split ())) if __name__ == '__main__' : TurtleShell () . cmdloop () 以下は、turtle シェルでの機能のヘル ... 録と再実行のセッション例です: Welcome to the turtle shell. Type help or ? to list commands. (turtle) ? Docum ...
https://man.plustar.jp/python/library/cmd.html - [similar]
24.3. shlex --- 単純な字句解析 — Python 3.6.5 ドキュメント 7899
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( filename ) >>> print ( command ) # executed by a shell: boom! ls -l somefile; rm -rf ~ quote() がそのセキ ... x will try to be as close as possible to the POSIX shell parsing rules. The punctuation_chars argument prov ... way to make the behaviour even closer to how real shells parse. This can take a number of values: the defa ... d from wordchars . See Improved Compatibility with Shells for more information. バージョン 3.6 で変更: The ...
https://man.plustar.jp/python/library/shlex.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 7850
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ode() を呼ぶとこのモードを復旧します。 curses. def_shell_mode ( ) ¶ 現在の端末属性を、稼動中のプログラムが ... 利用している "プログラム" モードです。) その後 reset_shell_mode() を呼ぶとこのモードを復旧します。 curses. de ... og_mode() で保存した内容に戻します。 curses. reset_shell_mode ( ) ¶ 端末を "shell" モードに復旧し、あらかじ ... め def_shell_mode() で保存した内容に戻します。 curses. resetty ...
https://man.plustar.jp/python/library/curses.html - [similar]
PREV 1 2 3 NEXT