Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 249 for FOR (0.129 sec.)
DTrace と SystemTap で CPython を測定する — Python 3.6.5 ドキュメント 4960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » DTra ... --with-dtrace を設定しなければなりません: checking for --with-dtrace... yes On macOS, you can list availa ... @%rbp 8@%r12 -4@%eax The above metadata contains information for SystemTap describing how it can patch st ... トが実行していた呼び出し/返却階層を表示しています。 For a --enable-shared build of CPython, the markers ar ... and the probe's dotted path needs to reflect this. For example, this line from the above example: probe p ...
https://man.plustar.jp/python/howto/instrumentation.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 4960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 例です: >>> bytecode = dis . Bytecode ( myfunc ) >>> for instr in bytecode : ... print ( instr . opname ) . ... ffset, lineno) pairs. See Objects/lnotab_notes.txt for the co_lnotab format and how to decode it. バージョ ... ン 3.6 で変更: Line numbers can be decreasing. Before, they were always increasing. dis. findlabels ( c ... ABLE を参照してください。 バージョン 3.5 で追加. BEFORE_ASYNC_WITH ¶ スタックの先頭にあるオブジェクトの _ ...
https://man.plustar.jp/python/library/dis.html - [similar]
8.13. enum --- 列挙型のサポート — Python 3.6.5 ドキュメント 4960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... CHOCOLATE = 4 ... COOKIES = 9 ... MINT = 3 ... >>> for shake in Shake : ... print ( shake ) ... Shake.VAN ... QUARE = 2 ... DIAMOND = 1 ... CIRCLE = 3 ... ALIAS_FOR_SQUARE = 2 ... >>> Shape . SQUARE <Shape.SQUARE: 2 ... > >>> Shape . ALIAS_FOR_SQUARE <Shape.SQUARE: 2> >>> Shape ( 2 ) <Shape.SQ ... されたすべての名前を別名も含めて格納しています: >>> for name , member in Shape . __members__ . items (): . ...
https://man.plustar.jp/python/library/enum.html - [similar]
27.2. faulthandler --- Python tracebackのダンプ — Python 3.6.5 ドキュメント 4960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ダンプします。 バージョン 3.5 で変更: Added support for passing file descriptor to this function. 27.2.2. ... descriptors . バージョン 3.5 で変更: Added support for passing file descriptor to this function. バージョ ... ン 3.6 で変更: On Windows, a handler for Windows exception is also installed. faulthandler. ... 用できません。 バージョン 3.5 で変更: Added support for passing file descriptor to this function. faulthan ...
https://man.plustar.jp/python/library/faulthandler.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 4960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... bytes() float() iter() print() tuple() callable() format() len() property() type() chr() frozenset() lis ... ます。以下のコードと等価です: def all ( iterable ): for element in iterable : if not element : return Fals ... ます。以下のコードと等価です: def any ( iterable ): for element in iterable : if element : return True ret ... しくない場合には、次の方法のどちらでも使えます。 >>> format ( 14 , '#b' ), format ( 14 , 'b' ) ('0b1110', ' ...
https://man.plustar.jp/python/library/functions.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 4960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... て委ねます。 setLevel ( level ) ¶ Sets the threshold for this logger to level . Logging messages which are ... hods such as e.g. getEffectiveLevel() and isEnabledFor() will return/expect to be passed integers. isEnab ... ledFor ( lvl ) ¶ 深刻度が lvl のメッセージが、このロガーで ... の一部にすることもできます。以下の例を見てください: FORMAT = ' %(asctime)-15s %(clientip)s %(user)-8s %(me ...
https://man.plustar.jp/python/library/logging.html - [similar]
12. 仮想環境とパッケージ — Python 3.6.5 ドキュメント 4960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... pip search astronomy skyfield - Elegant astronomy for Python gary - Galactic astronomy and gravitational ... stronomy - A collection of astronomy related tools for Python. ... pip は "search", "install", "uninstall ... collected packages: novas Running setup.py install for novas Successfully installed novas-3.1.1.3 パッケー ... ame: requests Version: 2 .7.0 Summary: Python HTTP for Humans. Home-page: http://python-requests.org Auth ...
https://man.plustar.jp/python/tutorial/venv.html - [similar]
マップ型プロトコル (mapping protocol) — Python 3.6.5 ドキュメント 4920
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... of keys in object o on success, and -1 on failure. For objects that do not provide mapping protocol, this ... Object *o , const char *key ) ¶ Remove the mapping for object key from the object o . Return -1 on failur ... PyObject *o , PyObject *key ) ¶ Remove the mapping for object key from the object o . Return -1 on failur ...
https://man.plustar.jp/python/c-api/mapping.html - [similar]
8. Distutilsの拡張 — Python 3.6.5 ドキュメント 4920
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... to allow third-party extensions to provide support for additional packaging systems, but the commands can ... be used for anything distutils commands can be used for. A new ... used to specify additional packages to be searched for modules implementing commands. Like all distutils ... the [global] section of a configuration file, or before any commands on the command line. If set in a con ...
https://man.plustar.jp/python/distutils/extending.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 4920
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ble set になります) 辞書と集合の内包表記 ( {i: i*2 for i in range(3)} ). 1つの with 文で複数のコンテキスト ... key が選ばれます: >>> od = OrderedDict ([( x , 0 ) for x in range ( 20 )]) >>> od . popitem () (19, 0) >> ... そのため、シンプルなカンマによるグループ化機構が str.format() メソッドのミニ言語に追加されました。浮動小数点 ... カンマを幅と精度の間に置きます。 >>> ' {:20,.2f} ' . format ( 18446744073709551616.0 ) '18,446,744,073,709, ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]