Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 249 for FOR (0.122 sec.)
用語集 — Python 3.6.5 ドキュメント 5673
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... prompt of the interactive shell when entering code for an indented code block or within a pair of matchin ... が、 yield 式を持つ点で異なります。 yield 式は async for ループで使用できる値の並びを生成するのに使用されま ... 語を使用します。 非同期ジェネレータ関数には、 async for 文や async with 文だけでなく await 式もあることがあ ... 5 . asynchronous iterable (非同期イテラブル) async for 文の中で使用できるオブジェクトです。 自身の __aite ...
https://man.plustar.jp/python/glossary.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 5673
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s ( server_address , handler_class ) httpd . serve_forever () class http.server. HTTPServer ( server_addr ... nal input data. wfile ¶ Contains the output stream for writing a response back to the client. Proper adhe ... っています。例えば 'Python/1.4' です。 error_message_format ¶ Specifies a format string that should be used ... by send_error() method for building an error response to the client. The stri ...
https://man.plustar.jp/python/library/http.server.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 5673
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... このタイトルに反映しています。---) PEP 314: Metadata for Python Software Packages v1.1 ¶ Distutils にいくつ ... i.python.org is storing source and binary archives for a package. The new upload Distutils command will u ... nes により実装されました。 参考 PEP 314 - Metadata for Python Software Packages v1.1 PEP 提案と著 A.M. Ku ... の一例です: with open ( '/etc/passwd' , 'r' ) as f : for line in f : print line ... more processing code .. ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 5542
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... odule ( fullname , path=None ) ¶ An abstact method for finding a loader for the specified module. Origina ... lly specified in PEP 302 , this method was meant for use in sys.meta_path and in the path-based import ... ジュールは、そのままにします ( importlib.util.module_for_loader() を参照してください)。 ローダーはモジュール ... なら、空文字列の値をとります。 importlib.util.module_for_loader() デコレータで、 __package__ の詳細を扱えま ...
https://man.plustar.jp/python/library/importlib.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 5542
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... PythonLabs のために働く 5 人の開発者、それと SourceForge に移行した結果改善されたコミュニケーションのおか ... グ報告の追跡、パッチ提出の待ち行列管理のための SourceForge によって利用出来るようになったツールの使用を始め ... グとパッチ管理ツールを使ってください。 https://sourceforge.net/projects/python/ にあります(訳注: 2015 年現在 ... の状況は What's New in Python 2.6 参照)。 SourceForge で現在ホストされているサービスの中で最も重要なの ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 5502
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... coroutine or result = yield from coroutine -- wait for another coroutine to produce a result (or raise an ... produce a result to the coroutine that is waiting for this one using await or yield from . raise excepti ... aise an exception in the coroutine that is waiting for this one using await or yield from . Calling a cor ... he generator to be called by async def coroutines, for instance using an await expression. async def コル ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
31.2. pkgutil --- パッケージ拡張ユーティリティ — Python 3.6.5 ドキュメント 5502
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ind_loader ( fullname ) ¶ Retrieve a module loader for the given fullname . これは後方互換性のために提供し ... il. get_importer ( path_item ) ¶ Retrieve a finder for the given path_item . The returned finder is cache ... et_loader ( module_or_name ) ¶ Get a loader object for module_or_name . module か package が通常の import ... r_importers ( fullname='' ) ¶ Yield finder objects for the given module name. If fullname contains a '.', ...
https://man.plustar.jp/python/library/pkgutil.html - [similar]
24.3. shlex --- 単純な字句解析 — Python 3.6.5 ドキュメント 5432
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = 'somefile; rm -rf ~' >>> command = 'ls -l {} ' . format ( filename ) >>> print ( command ) # executed b ... ティホールをふさぎます: >>> command = 'ls -l {} ' . format ( quote ( filename )) >>> print ( command ) ls ... e; rm -rf ~' >>> remote_command = 'ssh home {} ' . format ( quote ( command )) >>> print ( remote_command ... wordchars . See Improved Compatibility with Shells for more information. バージョン 3.6 で変更: The punct ...
https://man.plustar.jp/python/library/shlex.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 5432
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... escription = 'Manage servers' , # main description for help epilog = 'Tested on Solaris and Linux' ) # di ... = '+' , # require one or more targets help = 'url for target machines' ) # help msg explanation parser . ... loy,start,stop} action on each target HOSTNAME url for target machines optional arguments: -h, --help sho ... (launch and move) $ ./helm.py launch --help # help for launch options $ ./helm.py launch --missiles # set ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 5372
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... b. AbstractContextManager ¶ An abstract base class for classes that implement object.__enter__() and obje ... ct.__exit__() . A default implementation for object.__enter__() is provided which returns self ... g ( urlopen ( 'http://www.python.org' )) as page : for line in page : print ( line ) page を明示的に clos ... . redirect_stdout ( new_target ) ¶ Context manager for temporarily redirecting sys.stdout to another file ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT