Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 163 for TYPE (0.018 sec.)
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 5868
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ンタプリタの著作権を表示する文字列です。 sys. _clear_type_cache ( ) ¶ 内部の型キャッシュをクリアします。型キ ... ード生成を制御することもできます。 sys. excepthook ( type , value , traceback ) ¶ 指定したトレースバックと例 ... ne 値のタプルを返します。例外が発生している場合、 (type, value, traceback) を返します。 type は処理中の例外 ... [C99] の 5.2.4.2.2 節 'Characteristics of floating types' を参照してください。 属性 float.h のマクロ 説明 ...
https://man.plustar.jp/python/library/sys.html - [similar]
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 5823
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n のコードは以下のようなものです: print ( "Content-Type: text/html" ) # HTML is following print () # blank ... トの HEAD セクション中の META タグ、あるいは Content-Type ヘッダーに含まれています。これは、標準入力または環 ... を指定してください。 例えば、以下のコード ( Content-Type ヘッダと空行はすでに出力された後とします) は name ... Storage アイテムとなります。複数ファイルかどうかは type 属性が multipart/form-data (または multipart/* にマ ...
https://man.plustar.jp/python/library/cgi.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 5788
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... に適用されるいくつかの規約です: Most non- multipart type messages are parsed as a single message object wit ... er_parts() will yield an empty list. All multipart type messages will be parsed as a container message obj ... d a list of subparts. Most messages with a content type of message/* (such as message/delivery-status and ... ultipart -edness. Such messages may have a Content-Type header of type multipart , but their is_multipart( ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
32.3. symtable --- コンパイラの記号表へのアクセス — Python 3.6.5 ドキュメント 5788
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 成 ¶ symtable. symtable ( code , filename , compile_type ) ¶ Python ソース code に対するトップレベルの Symb ... e はコードを収めてあるファイルの名前です。 compile_type は compile() の mode 引数のようなものです。 32.3.2 ... 号表。コンストラクタはパブリックではありません。 get_type ( ) ¶ 記号表の型を返します。有り得る値は 'class' , ... に対するものであれば関数名であり、グローバルな ( get_type() が 'module' を返す) 記号表であれば 'top' です。 ...
https://man.plustar.jp/python/library/symtable.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 5788
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... the only ones that use data . The supported object types include bytes, file-like objects, and iterables. ... TTPHandler will set these headers according to the type of data . Content-Length will be used to send byte ... n 2.6の場合) と設定します。 An appropriate Content-Type header should be included if the data argument is ... as not been provided and data is not None, Content-Type: application/x-www-form-urlencoded will be added a ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 5697
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ipFile. write ( filename , arcname=None , compress_type=None ) ¶ Write the file named filename to the arch ... ading path separators removed). If given, compress_type overrides the value given for the compression para ... e. writestr ( zinfo_or_arcname , data [ , compress_type ] ) ¶ Write the string data to the archive; zinfo_ ... st be opened with mode 'w' , 'x' or 'a' . compress_type が指定された場合、その値はコンストラクタに与えられ ...
https://man.plustar.jp/python/library/zipfile.html - [similar]
コルーチンオブジェクト — Python 3.6.5 ドキュメント 5663
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ject ¶ コルーチンオブジェクトのための C 構造体。 PyTypeObject PyCoro_Type ¶ コルーチンオブジェクトに対応す ... oro_CheckExact ( PyObject *ob ) ¶ ob の型が PyCoro_Type のときに true を返します。 ob は NULL であってはい ...
https://man.plustar.jp/python/c-api/coro.html - [similar]
19.1.5. email.errors: 例外及び欠陥クラス — Python 3.6.5 ドキュメント 5663
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... dary() method will raise this error if the content type is unknown when the method is called. Header may r ... ペイロードがすでにスカラー値で、メッセージの Content-Type メインタイプが multipart でないか見付からない場合に ... tipartConversionError は MessageError と組み込みの TypeError を多重継承しています。 Message.add_payload() ... ありません。 StartBoundaryNotFoundDefect -- Content-Type ヘッダで宣言された開始境界がありません。 CloseBoun ...
https://man.plustar.jp/python/library/email.errors.html - [similar]
ジェネレータオブジェクト — Python 3.6.5 ドキュメント 5571
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ネレータオブジェクトに使われている C 構造体です。 PyTypeObject PyGen_Type ¶ ジェネレータオブジェクトに対応す ... yGen_CheckExact ( PyObject *ob ) ¶ ob の型が PyGen_Type のとき真を返します。 ob が NULL であってはなりませ ...
https://man.plustar.jp/python/c-api/gen.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 5571
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s code that passed to send_error() . error_content_type ¶ エラーレスポンスをクライアントに送信する時に使う ... Content-Type HTTP ヘッダを指定します。デフォルトでは 'text/html ... 4 , 'File not found' error. Otherwise, the content type is guessed by calling the guess_type() method, whi ... uses the extensions_map variable. 出力は 'Content-type:' と推測されたコンテントタイプで、その後にファイル ...
https://man.plustar.jp/python/library/http.server.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT