Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 76 for run (0.021 sec.)
24.3. shlex --- 単純な字句解析 — Python 3.6.5 ドキュメント 6344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... parsing of the characters ();<>|& is changed: any run of these characters (considered punctuation charac ... ¶ Characters that will be considered punctuation. Runs of punctuation characters will be returned as a s ... parsing of the characters ();<>|& is changed: any run of these characters is returned as a single token. ...
https://man.plustar.jp/python/library/shlex.html - [similar]
11.10. shutil --- 高水準のファイル操作 — Python 3.6.5 ドキュメント 6344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rmat [ , root_dir [ , base_dir [ , verbose [ , dry_run [ , owner [ , group [ , logger ] ] ] ] ] ] ] ) ¶ ア ... どちらも、デフォルトはカレントディレクトリです。 dry_run が真の場合、アーカイブは作成されませんが実行される ... キーワード引数として渡されます: owner , group , dry_run ならびに logger ( make_archive() に渡されます)。 e ...
https://man.plustar.jp/python/library/shutil.html - [similar]
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 6233
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ールを参照してください。 import sys , traceback def run_user_code ( envdir ): source = input ( ">>> " ) tr ... dout ) print ( "-" * 60 ) envdir = {} while True : run_user_code ( envdir ) 次の例は例外とトレースバックの ...
https://man.plustar.jp/python/library/traceback.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 6233
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... patcher . stop () ... >>> MyTest ( 'test_foo' ) . run () If you use this technique you must ensure that ... self . mock_foo ) ... >>> MyTest ( 'test_foo' ) . run () 26.6.3.5. Mocking Unbound Methods ¶ Whilst writ ... ginal = mymodule . Foo >>> MyTest ( 'test_foo' ) . run () >>> assert mymodule . Foo is original 26.6.3.9. ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
8. エラーと例外 — Python 3.6.5 ドキュメント 6233
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... とができます。例えば以下のようにします: ... except ( RuntimeError , TypeError , NameError ): ... pass excep ... t ZeroDivisionError as err : ... print ( 'Handling run-time error:' , err ) ... Handling run-time error: ...
https://man.plustar.jp/python/tutorial/errors.html - [similar]
8. Distutilsの拡張 — Python 3.6.5 ドキュメント 6123
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... する情報を持たず、単にファイル名だけを持ちます。 dry-run モードでも、何が作成されたかを示すために、同じペア ...
https://man.plustar.jp/python/distutils/extending.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 6123
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... oose what to do based on what version of Python is running. The best way to do this is with feature detec ... tion of whether the version of Python you're running under supports what you need. If for some reas ... can be used to analyze your code as if it's being run under Python 2, then you can run the tool a second ... time as if your code is running under Python 3. By running a static type check ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
25. Tk を用いたグラフィカルユーザインターフェイス — Python 3.6.5 ドキュメント 6123
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ュー (Shell ウィンドウ、Editor ウィンドウ) 25.5.1.4. Run メニュー (Editor ウィンドウのみ) 25.5.1.5. Shell メ ...
https://man.plustar.jp/python/library/tk.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 6123
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ミリ秒後に fun を呼び出すタイマーを仕掛けます。 >>> running = True >>> def f (): ... if running : ... fd ( ... 0 ) >>> f () ### makes the turtle march around >>> running = False turtle. mainloop ( ) ¶ turtle. done ( ... graphics program. Must not be used if a script is run from within IDLE in -n mode (No subprocess) - for ... an study it as an example and see its effects when running the demos (preferably not from within the demo ...
https://man.plustar.jp/python/library/turtle.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 6123
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... d code here' python -mtimeit -h # for details 参考 runpy.run_module() Python コードで直接使える等価な機能 ... イルが __main__ モジュールとして実行されます。 参考 runpy.run_path() Python コードで直接使える等価な機能 イ ... rrogatepass' are used. This may also be enabled at runtime with sys._enablelegacywindowsfsencoding() . Av ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT