Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 30 for op (0.060 sec.)
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 7213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ん。これは本質的には、ライブラリ開発者に使われる 'no-op' ハンドラです。 class logging. NullHandler ¶ NullH ... cts are also accepted for the filename argument. reopenIfNeeded ( ) ¶ Checks to see if the file has chan ... existing stream is flushed and closed and the file opened again, typically as a precursor to outputting ... Outputs the record to the file, but first calls reopenIfNeeded() to reopen the file if it has changed. ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 7213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 法を提供します。単純なファイルの読み書きについては、 open() を参照してください。パス操作については、 os.pa ... からアイテムが取り除かれた時に自動的に呼ばれます。 pop() または clear() が呼ばれた時も同様です。 os. envi ... RNAME to find out who the user is, and falls back to pwd.getpwuid(os.getuid())[0] to get the login name ... します。このような環境変数の変更は、 os.system() 、 popen() 、または fork() と execv() で起動されたサブプロ ...
https://man.plustar.jp/python/library/os.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 7213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ンドライン解析のために、新たに argparse モジュールが optparse の制限を克服するものとして導入されました。op ... argument name choices = [ 'deploy' , 'start' , 'stop' ], # three allowed values help = 'action on each ... . add_argument ( '-u' , '--user' , # -u or --user option required = True , # make it a required argumen ... sage: manage_cloud.py [-h] -u USER {deploy,start,stop} HOSTNAME [HOSTNAME ...] Manage servers positional ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 7213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... om errno import ENOENT , EACCES , EPERM try : with open ( "document.txt" ) as f : content = f . read () ... 外属性を調べたりせずに書くことが出来ます: try : with open ( "document.txt" ) as f : content = f . read () ... n bpo-12380 .)。 list と bytearray に新規メソッド copy() , clear() が追加されました ( bpo-10516 )。これに ... Antoine Pitrou in bpo-9260 .) 組み込みの関数と型 ¶ open() に新規パラメータ opener が追加されました。背後 ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
初期化 (initialization)、終了処理 (finalization)、スレッド — Python 3.6.5 ドキ... 7148
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... created and not yet destroyed since the last call to Py_Initialize() . Ideally, this frees all memory al ... located by the Python interpreter. This is a no-op when called for a second time (without calling Py_ ... s.platform として利用できます。 const char* Py_GetCopyright ( ) ¶ 現在の Python バージョンに対する公式の ... 著作権表示文字列を返します。例えば 'Copyright 1991-1995 Stichting Mathematisch Centrum, Am ...
https://man.plustar.jp/python/c-api/init.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 7148
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... For allocation */ /* Methods to implement standard operations */ destructor tp_dealloc ; printfunc tp_pr ... yMappingMethods * tp_as_mapping ; /* More standard operations (here for binary compatibility) */ hashfun ... cs * tp_as_buffer ; /* Flags to define presence of optional/expanded features */ unsigned long tp_flags ... ject *tp_richcompare(PyObject *a, PyObject *b, int op) というシグネチャを持つ拡張比較関数を指します。 1つ ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
プログラミング FAQ — Python 3.6.5 ドキュメント 7148
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... れる html ドキュメント、高度なデバッガ、総合ヘルプ、Zope のサポートを提供します。 Eric は PyQt や Scintill ... ます: 標準ライブラリモジュール -- 例 sys 、 os 、 getopt 、 re サードパーティのライブラリモジュール (Pytho ... クトはどのようにコピーしますか? ¶ 一般的に、普通は copy.copy() や copy.deepcopy() を試してください。何でも ... 簡単にコピーできるオブジェクトもあります。辞書には copy() メソッドがあります: newdict = olddict . copy () ...
https://man.plustar.jp/python/faq/programming.html - [similar]
Logging HOWTO — Python 3.6.5 ドキュメント 7148
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... るのは最初の呼び出しのみで、続く呼び出しの効果は no-op です。 上記のスクリプトを複数回実行すると、2 回目以 ... て子ロガーを作成すれば十分です。(しかし、ロガーの propagate 属性を False に設定することで、伝播を抑制でき ... ndlers = consoleHandler qualname = simpleExample propagate = 0 [handler_consoleHandler] class = StreamHa ... leExample : level : DEBUG handlers : [ console ] propagate : no root : level : DEBUG handlers : [ consol ...
https://man.plustar.jp/python/howto/logging.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 7148
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... may be updated by a noutrefresh() call after write operations such as addstr() have been performed on a ... e character as a one-byte bytes object. Under Unix operating systems this is a property of the controlli ... hange to the new definition. This function is a no-op on most terminals; it is active only if can_change ... l character as a one-byte bytes object. Under Unix operating systems this is a property of the controlli ...
https://man.plustar.jp/python/library/curses.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 7148
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... アドレスファミリーでは、 (host, port, flowinfo, scopeid) の4 要素のタプルが利用されます。 flowinfo と s ... copeid はそれぞれC言語の struct sockaddr_in6 の sin6_f ... lowinfo と sin6_scope_id メンバーを表します。 socket モジュールのメソッ ... ドでは、後方互換性のために flowinfo と scopeid の省略を許しています。しかし、 scopeid を省略す ...
https://man.plustar.jp/python/library/socket.html - [similar]
PREV 1 2 3 NEXT