Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 254 for None (0.132 sec.)
Argparse チュートリアル — Python 3.6.5 ドキュメント 4370
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argp ... ectory by default). Sort entries alphabetically if none of -cftuvSUX nor --sort is specified. ... 上の4つの ... 連する変数(このケースでは、 args.verbosity ) の値に None が設定されることです。こうする理由は if 文の真偽判 ... るでしょう。 -v フラグを指定しなければ、フラグの値は None とみなされます。 期待通り、長い形式のフラグを指定し ... ypeError: '>=' not supported between instances of 'NoneType' and 'int' 最初の出力は上手くいっていますし、以 ...
https://man.plustar.jp/python/howto/argparse.html - [similar]
18.5.2. イベントループ — Python 3.6.5 ドキュメント 4370
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ポリシーが指定されていない場合には例外を送出します。 None を返すことがあってはなりません。 set_event_loop ( ... 現在のイベントループポリシーを設定します。 policy が None の場合、デフォルトポリシーが復元されます。 18.5.2. ... _loop ( self ): """Get the event loop. This may be None or an instance of EventLoop. """ loop = super () . ...
https://man.plustar.jp/python/library/asyncio-eventloops.html - [similar]
7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 4370
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... codecs. CodecInfo ( encode , decode , streamreader=None , streamwriter=None , incrementalencoder=None , in ... crementaldecoder=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]
19.1.15. email.iterators: イテレータ — Python 3.6.5 ドキュメント 4370
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... subpart_iterator ( msg , maintype='text' , subtype=None ) ¶ このイテレータは msg 中のすべてのサブパートをた ... ありません 。 email.iterators. _structure ( msg , fp=None , level=0 , include_default=False ) ¶ Prints an in ...
https://man.plustar.jp/python/library/email.iterators.html - [similar]
23.2. locale --- 国際化サービス — Python 3.6.5 ドキュメント 4370
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 送出されます。 locale. setlocale ( category , locale=None ) ¶ locale が渡され None でない場合、 setlocale() ... いロケールの設定が返されます。 locale が省略されたり None の場合、 category の現在の設定が返されます。 setlo ... uage code および encoding が決定できなかった場合、 None になるかもしれません。 locale. getlocale ( categor ... uage code および encoding が決定できなかった場合、 None になるかもしれません。 locale. getpreferredencodin ...
https://man.plustar.jp/python/library/locale.html - [similar]
22.3. sunau --- Sun AUファイルの読み書き — Python 3.6.5 ドキュメント 4370
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... type ( ) ¶ 圧縮形式を返します。 'ULAW' , 'ALAW' , 'NONE' がサポートされている形式です。 AU_read. getcompna ... 何も面白いことはしません。 AU_read. getmarkers ( ) ¶ None を返します。 AU_read. getmark ( id ) ¶ エラーを発生 ... type , name ) ¶ 圧縮形式とその記述を設定します。 'NONE' と 'ULAW' だけが、出力時にサポートされている形式で ...
https://man.plustar.jp/python/library/sunau.html - [similar]
21.10. urllib.robotparser --- robots.txt のためのパーザ — Python 3.6.5 ドキュメ... 4370
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ntry for this parameter has invalid syntax, return None . バージョン 3.6 で追加. request_rate ( useragent ... ntry for this parameter has invalid syntax, return None . バージョン 3.6 で追加. The following example dem ...
https://man.plustar.jp/python/library/urllib.robotparser.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 4370
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... PATH_INFO にパスセグメントが何も残っていなければ、 None が返されます。 典型的なこのルーチンの使い方はリクエ ... エラーを発生しません。単に、存在しないヘッダの取得は None を返し、存在しないヘッダの削除は何もしません。 Hea ... を使うことができます。それぞれのパラメータは文字列か None でなければいけません。パラメータ中のアンダースコア ... ータに name="value" の形で追加されます。この値がもし None の場合、パラメータ名だけが追加されます。(これは値 ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
オブジェクトをヒープ上にメモリ確保する — Python 3.6.5 ドキュメント 4340
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ルド に対してアクセスしてはなりません。 PyObject _Py_NoneStruct ¶ Python からは None に見えるオブジェクトです ... クセスは、このオブジェクトへのポインタを評価する Py_None マクロを使わなければなりません。 参考 PyModule_Cre ...
https://man.plustar.jp/python/c-api/allocation.html - [similar]
22.2. aifc --- AIFFおよびAIFCファイルの読み書き — Python 3.6.5 ドキュメント 4340
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 以下の関数を定義しています: aifc. open ( file , mode=None ) ¶ AIFFあるいはAIFF-Cファイルを開き、後述するメソ ... を示す4バイトの bytes を返します。AIFFファイルでは b'NONE' が返されます。 aifc. getcompname ( ) ¶ オーディオ ... 在のところ、以下の圧縮形式がサポートされています: b'NONE' , b'ULAW' , b'ALAW' , b'G722' 。 aifc. setparams ...
https://man.plustar.jp/python/library/aifc.html - [similar]