Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 123 for path (0.078 sec.)
21.23. http.cookies --- HTTPの状態管理 — Python 3.6.5 ドキュメント 6095
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のような RFC 2109 準拠の定数となっています。 expires path comment domain max-age secure version httponly htt ... () >>> C [ "rocky" ] = "road" >>> C [ "rocky" ][ "path" ] = "/cookie" >>> print ( C . output ( header = " ... Cookie:" )) Cookie: rocky=road; Path=/cookie >>> print ( C . output ( attrs = [], heade ... >> C [ "oreo" ] = "doublestuff" >>> C [ "oreo" ][ "path" ] = "/" >>> print ( C ) Set-Cookie: oreo=doublest ...
https://man.plustar.jp/python/library/http.cookies.html - [similar]
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 6021
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t atexit import os import readline histfile = os . path . join ( os . path . expanduser ( "~" ), ".python_ ... t atexit import os import readline histfile = os . path . join ( os . path . expanduser ( "~" ), ".python_ ... = None , filename = "<console>" , histfile = os . path . expanduser ( "~/.console-history" )): code . Int ...
https://man.plustar.jp/python/library/readline.html - [similar]
ライブラリと拡張 FAQ — Python 3.6.5 ドキュメント 5984
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... プログラムが使えます。 Python インタプリタがユーザの PATH のディレクトリにあることを前提とすれば、ほとんど全 ... プトでこれをやっては いけません 。 CGI スクリプトの PATH 変数はたいてい最小限のものになっているので、実際の ... 。作成には os.mkdir() を使ってください。 os.makedirs(path) は path の中間のディレクトリの、存在しないものを作 ... 成します。 os.removedirs(path) は中間のディレクトリが空である限り、それらを削除し ...
https://man.plustar.jp/python/faq/library.html - [similar]
初期化 (initialization)、終了処理 (finalization)、スレッド — Python 3.6.5 ドキ... 5947
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... tProgramName() , Py_SetPythonHome() , および Py_SetPath() は例外です。この関数はロード済みモジュールのテー ... , sys を生成します。また、モジュール検索パス ( sys.path ) も初期化します。 sys.argv の設定は行いません。設 ... イドキャラクタに変換されます)。この引数値は、 Py_GetPath() や、以下に示すその他の関数が、インタプリタの実行 ... 方法を知っているでしょう。 wchar_t* Py_GetProgramFullPath ( ) ¶ Python 実行可能形式の完全なプログラム名を返し ...
https://man.plustar.jp/python/c-api/init.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 5947
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 意してください (特に glob , fnmatch , os.walk() , os.path.expandvars() , os.path.expanduser() , shutil )。 バ ... d before executing the child. cwd can be a str and path-like object. In particular, the function looks for ... t item in args ) relative to cwd if the executable path is a relative path. バージョン 3.6 で変更: cwd par ... ameter accepts a path-like object . restore_signals が真の場合 (デフォル ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
29.3. builtins --- 組み込みオブジェクト — Python 3.6.5 ドキュメント 5873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ように直接的に使われます: import builtins def open ( path ): f = builtins . open ( path , 'r' ) return Upper ...
https://man.plustar.jp/python/library/builtins.html - [similar]
16. 付録 — Python 3.6.5 ドキュメント 5836
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... /bin/env python3.5 (ここではインタプリタがユーザの PATH 上にあると仮定しています) をスクリプトの先頭に置き ... なら、グローバルのスタートアップファイルの中に if os.path.isfile('.pythonrc.py'): exec(open('.pythonrc.py'). ... ron . get ( 'PYTHONSTARTUP' ) if filename and os . path . isfile ( filename ): with open ( filename ) as f ...
https://man.plustar.jp/python/tutorial/appendix.html - [similar]
11.8. fnmatch --- Unix ファイル名のパターンマッチ — Python 3.6.5 ドキュメント 5799
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lse . Both parameters are case-normalized using os.path.normcase() . fnmatchcase() can be used to perform ... comparison is case-sensitive and does not apply os.path.normcase() . fnmatch. filter ( names , pattern ) ¶ ...
https://man.plustar.jp/python/library/fnmatch.html - [similar]
11.9. linecache --- テキストラインにランダムアクセスする — Python 3.6.5 ドキュ... 5799
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ルが見つからなかった場合、モジュールの、つまり、 sys.path でそのファイルを探します。 zipfileやその他のファイ ... s の PEP 302 __loader__ をチェックし、そのあと sys.path を探索します。 linecache. clearcache ( ) ¶ キャッシ ...
https://man.plustar.jp/python/library/linecache.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 5799
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... を修正します。(Fixed by Zsolt Cserna; bpo-7242 .) os.path モジュールの、 normpath() および abspath() 関数は、 ... de なら、戻り値も Unicode 文字列になります。 ( normpath() fixed by Matt Giuca in bpo-5827 ; abspath() fixe ... gory P. Smith.) 新しい関数: runpy モジュールの run_path() は、与えられた path 引数のコードを実行します。 p ... 。ディレクトリか zip パスが与えられると、それが sys.path の最初に加えられ、モジュール __main__ が import さ ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT