Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 171 - 180 of about 254 for None (0.173 sec.)
21.3. cgitb --- CGI スクリプトのトレースバック管理機構 — Python 3.6.5 ドキュメ... 4340
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... かを制御します。 cgitb. enable ( display=1 , logdir=None , context=5 , format="html" ) ¶ この関数は、 sys.e ... デフォルトの値は "html" です。 cgitb. handler ( info=None ) ¶ この関数は標準の設定 (ブラウザに報告を表示しま ...
https://man.plustar.jp/python/library/cgitb.html - [similar]
8.5. heapq --- ヒープキューアルゴリズム — Python 3.6.5 ドキュメント 4340
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 用関数を提供します。 heapq. merge ( *iterables , key=None , reverse=False ) ¶ 複数のソートされた入力をマージ ... ら比較のキーを取り出すのに使われます。デフォルト値は None です (要素を直接比較します)。 reverse はブール値で ... e 引数を追加. heapq. nlargest ( n , iterable , key=None ) ¶ iterable で定義されるデータセットのうち、最大値 ... se=True)[:n] heapq. nsmallest ( n , iterable , key=None ) ¶ iterable で定義されるデータセットのうち、最小値 ...
https://man.plustar.jp/python/library/heapq.html - [similar]
14.5. plistlib --- Mac OS X .plist ファイルの生成と解析 — Python 3.6.5 ドキュメ... 4340
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 関数を定義しています: plistlib. load ( fp , * , fmt=None , use_builtin_types=True , dict_type=dict ) ¶ plis ... します。 fmt はファイルの形式で、次の値が有効です。 None : ファイル形式を自動検出します FMT_XML : XML ファイ ... ジョン 3.4 で追加. plistlib. loads ( data , * , fmt=None , use_builtin_types=True , dict_type=dict ) ¶ バイ ...
https://man.plustar.jp/python/library/plistlib.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 4340
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... as mock_method : ... mock_method . return_value = None ... real = ProductionClass () ... real . method ( ... mock = Mock () >>> mock . foo_bar . return_value = None >>> mock . foo_bar ( 'baz' , spam = 'eggs' ) >>> m ... call_args_list : >>> mock = Mock ( return_value = None ) >>> mock ( 1 , 2 , 3 ) >>> mock ( 4 , 5 , 6 ) >> ... kwargs ) ... >>> c = CopyingMock ( return_value = None ) >>> arg = set () >>> c ( arg ) >>> arg . add ( 1 ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 4340
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... hon . exe argparse - example . py - v { 'output' : None , 'is_verbose' : True , 'context' : 0 , 'inputs' : ... .) bytearray 型の translate() メソッドが第一引数に None を受け入れるようになりました。 (Fixed by Georg Bra ... ' >>> print config . get ( 'mysqld' , 'skip-bdb' ) None >>> print config . get ( 'mysqld' , 'unknown' ) Tr ... モジュールが、ポインタとして宣言された引数に対して None が渡された場合常に C の NULL ポインタに変換するよう ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 4340
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ng . It is now possible to set a special method to None to indicate that the corresponding operation is no ... ilable. For example, if a class sets __iter__() to None , the class is not iterable. (Contributed by Andre ... kopt() now supports the setsockopt(level, optname, None, optlen: int) form. (Contributed by Christian Heim ... func (): return open ( __file__ ) f = func () f = None Output of the command python3.6 -Wd -X tracemalloc ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
具象オブジェクト (concrete object) レイヤ — Python 3.6.5 ドキュメント 4310
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 型オブジェクトとシングルトン(singleton)オブジェクト None について述べます。 型オブジェクト None オブジェクト ...
https://man.plustar.jp/python/c-api/concrete.html - [similar]
数値型プロトコル (number protocol) — Python 3.6.5 ドキュメント 4310
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 。 o3 はオプションです。 o3 を無視させたいなら、 Py_None を入れてください ( o3 に NULL を渡すと、不正なメモ ... る場合、in-place 演算を行います。この関数は o3 が Py_None の場合は Python 文 o1 **= o2 と同じで、それ以外の場 ... 3) の in-place 版です。 o3 を無視させたいなら、 Py_None を入れてください ( o3 に NULL を渡すと、不正なメモ ...
https://man.plustar.jp/python/c-api/number.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 4310
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... a , maintype = 'image' , subtype = imghdr . what ( None , img_data )) # Send the email via our own SMTP se ... ding = mimetypes . guess_type ( path ) if ctype is None or encoding is not None : # No guess could be made ... # minded program, but it will handle the most common ones. Up to the prompt, the output from the above is: ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
32.13. pickletools --- pickle 開発者のためのツール群 — Python 3.6.5 ドキュメン... 4310
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... グインターフェース ¶ pickletools. dis ( pickle , out=None , memo=None , indentlevel=4 , annotate=0 ) ¶ pickl ...
https://man.plustar.jp/python/library/pickletools.html - [similar]