Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 130 for No (0.121 sec.)
Logging HOWTO — Python 3.6.5 ドキュメント 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... console logging . info ( 'I told you so' ) # will not print anything これらの行をスクリプトにタイプして ... c_level = getattr ( logging , loglevel . upper (), None ) if not isinstance ( numeric_level , int ): rai ... 用するのは最初の呼び出しのみで、続く呼び出しの効果は no-op です。 上記のスクリプトを複数回実行すると、2 回 ... スタイル標識です。 logging.Formatter. __init__ ( fmt=None , datefmt=None , style='%' ) ¶ フォーマット文字列 ...
https://man.plustar.jp/python/howto/logging.html - [similar]
7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... codecs. CodecInfo ( encode , decode , streamreader=None , streamwriter=None , incrementalencoder=None , ... incrementaldecoder=None , name=None ) ¶ codec レジストリ内を検索する場合 ... 数が指定されたエンコーディングを見つけられない場合、 None を返します。 注釈 現在、検索関数の登録は不可逆的 ... ます。 codecs. open ( filename , mode='r' , encoding=None , errors='strict' , buffering=1 ) ¶ エンコードさ ...
https://man.plustar.jp/python/library/codecs.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ure . result ()) map ( func , *iterables , timeout=None , chunksize=1 ) ¶ Similar to map(func, *iterable ... ately rather than lazily; func is executed asynchronously and several calls to func may be made concurre ... . timeout can be an int or a float. If timeout is not specified or None , there is no limit to the wait ... size of 1. With ThreadPoolExecutor , chunksize has no effect. バージョン 3.5 で変更: chunksize 引数が追加 ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
21.28. ipaddress --- IPv4/IPv6 操作ライブラリ — Python 3.6.5 ドキュメント 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sses are also implemented by IPv4Address objects, in order to make it easier to write code that handles ... IPv4 アドレスを構築します: A string in decimal-dot notation, consisting of four decimal integers in the ... dots (e.g. 192.168.0.1 ). Each integer represents an octet (byte) in the address. Leading zeroes are tol ... erated only for values less than 8 (as there is no ambiguity between the decimal and octal interpreta ...
https://man.plustar.jp/python/library/ipaddress.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 承されることがなくなりました。 On Unix using the spawn or forkserver start methods will also start a semap ... any remaining semaphores. Usually there should be none, but if a process was killed by a signal there m ... system allows only a limited number, and they will not be automatically unlinked until the next reboot.) ... q ,)) p . start () print ( q . get ()) p . join () Note that objects related to one context may not be c ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... しています: zipapp. create_archive ( source , target=None , interpreter=None , main=None ) ¶ source からア ... ードの書込みで開いてください。 target を指定しないか None を渡した場合、 source は必ずディレクトリでなけれ ... 指定されたインタープリタを返します。 #! が無い場合は None を返します。 archive 引数は、ファイル名またはバイ ... temp . getvalue ()) 28.4.5. インタープリタの指定 ¶ Note that if you specify an interpreter and then dist ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... Set([1, 2, 3, 4, 5, 6]) >>> S1 | S2 # Alternative notation Set([1, 2, 3, 4, 5, 6]) >>> S1 . intersectio ... n ( S2 ) Set([]) >>> S1 & S2 # Alternative notation Set([]) >>> S1 . union_update ( S2 ) >>> S1 ... nts in the union that aren't in the intersection. Another way of putting it is that the symmetric differ ... in exactly one set. Again, there's an alternative notation ( ^ ), and an in-place version with the unga ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
データ整列化 (data marshalling) のサポート — Python 3.6.5 ドキュメント 5763
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ve numeric value (where that's relevant), but it's not clear that negative values won't be handled prope ... rly when there's no error. What's the right way to tell? Should only n ...
https://man.plustar.jp/python/c-api/marshal.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 5763
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ile "<stdin>" , line 1 , in <module> TypeError : can only concatenate str (not "custom.Custom") to str 型 ... urrent Custom type is pretty uninteresting. It has no data and doesn't do anything. It can't even be sub ... better-maintained setuptools library. Documentation on how to do this is out of scope for this document ... e ( CustomObject * self , PyObject * Py_UNUSED ( ignored )) { if ( self -> first == NULL ) { PyErr_SetSt ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
プログラミング FAQ — Python 3.6.5 ドキュメント 5763
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... rint ( x ) 11 同様のことを、ネストされたスコープで nonlocal 予約語を使うことでもできます: >>> def foo () ... : ... x = 10 ... def bar (): ... nonlocal x ... print ( x ) ... x += 1 ... bar () ... ... クトを参照します。 定義の時に、数、文字列、タプル、 None など、イミュータブルなオブジェクトを使うと変更さ ... して使わないプログラミング手法がいいです。代わりに、 None をデフォルト値に使い、そのパラメタが None である ...
https://man.plustar.jp/python/faq/programming.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT