Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 163 for TYPE (0.055 sec.)
10.2. functools --- 高階関数と呼び出し可能オブジェクトの操作 — Python 3.6.5 ド... 4989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 3.2 で追加. @ functools. lru_cache ( maxsize=128 , typed=False ) ¶ 関数をメモ化用の呼び出し可能オブジェクト ... ze が 2 の累乗であるときが最も効率的に動作します。 typed が真に設定された場合は、関数の異なる型の引数が別々 ... 16 ) バージョン 3.2 で追加. バージョン 3.3 で変更: typed オプションが追加されました。 @ functools. total_o ... ... print ( "Nothing." ) ... >>> fun . register ( type ( None ), nothing ) The register() attribute retur ...
https://man.plustar.jp/python/library/functools.html - [similar]
31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 4989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rride と optimization のどちらも None 以外であれば TypeError が上げられます。 バージョン 3.4 で追加. バージ ... せん。 この関数は、新しいモジュールを作る方法として types.ModuleType よりも推奨されます。なぜなら、できるだ ... t define exec_module() as control over what module type is used for the module is required. For those same ... der's create_module() method must return None or a type for which its __class__ attribute can be mutated a ...
https://man.plustar.jp/python/library/importlib.html - [similar]
34.1. msilib --- Microsoft インストーラーファイルの読み書き — Python 3.6.5 ドキ... 4989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... します。 kind は MSICOLINFO_NAMES または MSICOLINFO_TYPES です。 View. Fetch ( ) ¶ MsiViewFetch() の呼び出し ... う三つのコントロールに対する名前。 control ( name , type , x , y , width , height , attributes , property , ... て返します。 参考 Dialog Table Control Table Control Types ControlCondition Table ControlEvent Table EventMa ...
https://man.plustar.jp/python/library/msilib.html - [similar]
11.2. os.path --- 共通のパス名操作 — Python 3.6.5 ドキュメント 4989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... verts forward slashes to backward slashes. Raise a TypeError if the type of path is not str or bytes (dire ...
https://man.plustar.jp/python/library/os.path.html - [similar]
11.4. stat --- stat() の結果を解釈する — Python 3.6.5 ドキュメント 4989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nction callback ( pathname ) else : # Unknown file type, print a message print ( 'Skipping %s ' % pathname ...
https://man.plustar.jp/python/library/stat.html - [similar]
26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 4989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rguments' ) Traceback (most recent call last): ... TypeError : <lambda>() takes exactly 3 arguments (1 giv ... k () >>> p = PropertyMock ( return_value = 3 ) >>> type ( m ) . foo = p >>> m . foo 3 >>> p . assert_calle ... をチェックし、間違ったシグネチャで呼び出された場合は TypeError を発生させます。クラスを置き換える mock の場合 ... hing () ... Traceback (most recent call last): ... TypeError : 'NonCallableMock' object is not callable 別 ...
https://man.plustar.jp/python/library/unittest.mock.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 4989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... st like regular strings, are an immutable sequence type. They can be indexed and sliced, but not modified ... 't convert non-string with explicit base" を伴った TypeError 例外を送出します。 sys モジュールに、これまで ... ppend requires exactly 1 argument; 2 given' を持つ TypeError を引き起こします。期待通りになるよう修正するに ... の積算や文字列のスライスに使おうと試みますが、これは TypeError となっていました。2.0 では長整数はシーケンスの ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 4989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... return comp . compress ( data ) + comp . flush () TypeError : 'str' does not support the buffer interface ... call last): File "<stdin>" , line 1 , in <module> TypeError : encoding with 'bz2' codec failed (TypeError ... by Serhiy Storchaka in bpo-8311 .) argparse ¶ FileType クラスが encoding 引数、 errors 引数を受け付けるよ ... and Yury Selivanov in bpo-17159 .) (---訳注: duck type はここでは「 types.FunctionType であることを要求し ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
はじめに — Python 3.6.5 ドキュメント 4943
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... deallocate) してはならないので、通常は静的記憶の PyTypeObject オブジェクトにします。 全ての Python オブジェ ... クトには (Python 整数型ですら) 型 ( type ) と参照カウント ( reference count ) があります。あ ...
https://man.plustar.jp/python/c-api/intro.html - [similar]
18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 4943
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ntLoop. getaddrinfo ( host , port , * , family=0 , type=0 , proto=0 , flags=0 ) ¶ このメソッドは コルーチン ...
https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]