Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 249 for FOR (0.149 sec.)
18.8. signal --- 非同期イベントにハンドラを設定する — Python 3.6.5 ドキュメント 4789
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... andlers will be executed by the main thread . Therefore, the only point of sending a signal to a particul ... ar Python thread would be to force a running system call to fail with InterruptedEr ... f threading.Thread objects to get a suitable value for thread_id . If signalnum is 0, then no signal is s ... ent, but error checking is still performed; this can be used to check if the target thread ...
https://man.plustar.jp/python/library/signal.html - [similar]
What's New in Python 2.1 — Python 3.6.5 ドキュメント 4789
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... >= __ge__() == __eq__() != __ne__() (特殊メソッドはFortranの .LT. や .LE. 等々の演算子にちなんで命名されて ... he [ x ] = retval return retval This version works for simple things such as integers, but it has a side ... ss exits and cleans up. This isn't very noticeable for integers, but if f() returns an object, or a data ... l . dom - W3C Document Object Model implementation for Python . FILE / usr / local / lib / python2 .1 / x ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
変更履歴 — Python 3.6.5 ドキュメント 4789
Filter entries by content:', ' ', ' ' ].join('\n')); function dofilter() { try { var query = new ... turn; // not a valid regex (yet) } // find headers for the versions (What's new in Python X.Y.Z?) $('#cha ... .parent(); var sections_found = 0; // find headers for the sections (Core, Library, etc.) h2_parent.find( ...
https://man.plustar.jp/python/whatsnew/changelog.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 4749
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... able existing loggers, you will need to use a JSON format for the configuration, which will use dictConfi ... g() for configuration. This method allows you to specify d ... するべきものを決定するのにコンテキストが使われます。 formatters - 対応する値は辞書で、そのそれぞれのキーがフ ... ォーマッタ id になり、それぞれの値が対応する Formatter インスタンスをどのように環境設定するかを記述 ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
35.6. termios --- POSIX スタイルの端末制御 — Python 3.6.5 ドキュメント 4749
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... is module provides an interface to the POSIX calls for tty I/O control. For a complete description of the ... termios(3) Unix manual page. It is only available for those Unix versions that support POSIX termios sty ...
https://man.plustar.jp/python/library/termios.html - [similar]
20.7. xml.dom.minidom --- 最小限の DOM の実装 — Python 3.6.5 ドキュメント 4749
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... <point>This is a demo</point> <point>Of a program for processing slides</point> </slide> <slide><title>A ... ing ( document ) def getText ( nodelist ): rc = [] for node in nodelist : if node . nodeType == node . TE ... ) print ( "</html>" ) def handleSlides ( slides ): for slide in slides : handleSlide ( slide ) def handle ... s )) def handlePoints ( points ): print ( "<ul>" ) for point in points : handlePoint ( point ) print ( "< ...
https://man.plustar.jp/python/library/xml.dom.minidom.html - [similar]
6. Python Package Index (PyPI) — Python 3.6.5 ドキュメント 4719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... user , 3. have the server generate a new password for you ( and email it to you ), or 4. quit Your selec ... Privacy Guard). The gpg program must be available for execution on the system PATH . You can also specif ... y which key to use for signing using the --identity=name option. upload コ ... ァイル ¶ The register and upload commands both check for the existence of a .pypirc file at the location $H ...
https://man.plustar.jp/python/distutils/packageindex.html - [similar]
デザインと歴史 FAQ — Python 3.6.5 ドキュメント 4719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... // error handling } else { // code that only works for nonzero x } このエラーは単純なタイプミスで、本当に ... に隠れています。 一番いい方法はイテレータを使って、 for 文でオブジェクトを通してループさせることです。例え ... ロトコルをサポートしているので、単純にこう書けます: for line in f : ... # do something with line... Python ... そらく、ファイルディスクリプタを使い果たすでしょう: for file in very_long_list_of_files : f = open ( file ...
https://man.plustar.jp/python/faq/design.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 4719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... N' , type = int , nargs = '+' , help = 'an integer for the accumulator' ) parser . add_argument ( '--sum' ... some integers. positional arguments: N an integer for the accumulator optional arguments: -h, --help sho ... type = int , nargs = '+' , ... help = 'an integer for the accumulator' ) >>> parser . add_argument ( '-- ... ne , description=None , epilog=None , parents=[] , formatter_class=argparse.HelpFormatter , prefix_chars= ...
https://man.plustar.jp/python/library/argparse.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 4719
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... l as string values, Path objects are also accepted for the filename argument. close ( ) ¶ ファイルを閉じま ... l as string values, Path objects are also accepted for the filename argument. reopenIfNeeded ( ) ¶ Checks ... e file is closed and a new file is silently opened for output. Rollover occurs whenever the current log f ... g the extensions '.1', '.2' etc., to the filename. For example, with a backupCount of 5 and a base file n ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]