Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 130 for No (0.032 sec.)
18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 14687
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... TCP 転送で受け取る必要があるデータが不足した場合に non-blocking SSL socket によって送出される SSLError サ ... TCP 転送が送信する必要があるデータが不足した場合に non-blocking SSL socket によって送出される SSLError サ ... LError サブクラス例外です。残念ながら元となった errno 番号を調べる簡単な方法はありません。 バージョン 3. ... t() が使えます。 ssl. wrap_socket ( sock , keyfile=None , certfile=None , server_side=False , cert_reqs= ...
https://man.plustar.jp/python/library/ssl.html - [similar]
16.15. errno --- 標準の errno システムシンボル — Python 3.6.5 ドキュメント 11781
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . 汎用オペレーティングシステムサービス » 16.15. errno --- 標準の errno システムシンボル ¶ このモジュール ... から標準の errno システムシンボルを取得することができます。個々のシ ... ンボルの値は errno に対応する整数値です。これらのシンボルの名前は、 l ... inux/include/errno.h から借用されており、かなり網羅的なはずです。 err ...
https://man.plustar.jp/python/library/errno.html - [similar]
14.2. configparser --- 設定ファイルのパーサー — Python 3.6.5 ドキュメント 9848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... g [topsecret.server.com] Port = 50022 ForwardX11 = no INI ファイルの構造は 下のセクション で解説します。 ... tates the parser >>> topsecret [ 'ForwardX11' ] = 'no' # same here >>> config [ 'DEFAULT' ][ 'ForwardX11 ... cret.server.com' ] >>> topsecret [ 'ForwardX11' ] 'no' >>> topsecret [ 'Port' ] '50022' >>> for key in c ... す。このメソッドは大文字小文字を区別せず、 'yes' / 'no' 、 'on' / 'off' 、 'true' / 'false' 、 '1' / '0' ...
https://man.plustar.jp/python/library/configparser.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 8985
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e and value are separated by a colon. The colon is not part of either the field name or the field value. ... del provided by an EmailMessage object is that of an ordered dictionary of headers coupled with a payloa ... t of sub- EmailMessage objects. In addition to the normal dictionary methods for accessing the header na ... on the payload, for generating a serialized version of the message, and for recursively walking over th ...
https://man.plustar.jp/python/library/email.message.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 8887
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... s Pranskevichus < elvis @ magic . io >, Yury Selivanov < yury @ magic . io > この記事では 3.5 と比較した ... es. Starting with Python 3.6 the asyncio module is no longer provisional and its API is considered stabl ... ets module has been added to simplify the generation of cryptographically strong pseudo-random numbers s ... ation, tokens, and similar. On Linux, os.urandom() now blocks until the system urandom entropy pool is i ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 8559
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... s considered internal-only for CPython. Its use is not supported for files outside CPython, and no guara ... ding backwards compatibility for future versions. In other words: if you maintain an external C extensio ... th Argument Clinic in your own code. But the version of Argument Clinic that ships with CPython 3.5 coul ... have just the text, based at the left margin, with no line wider than 80 characters. (Argument Clinic wi ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 8340
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... OMPRESSION) is slowest and produces the most. 0 (Z_NO_COMPRESSION) is no compression. The default value ... any error occurs. バージョン 3.6 で変更: level can now be used as a keyword parameter. zlib. compressobj ... OMPRESSION) is slowest and produces the most. 0 (Z_NO_COMPRESSION) is no compression. The default value ... ogarithm, while producing a raw output stream with no header or trailing checksum. +25 to +31 = 16 + (9 ...
https://man.plustar.jp/python/library/zlib.html - [similar]
カプセル — Python 3.6.5 ドキュメント 7805
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... い。 void* PyCapsule_Import ( const char *name , int no_block ) ¶ モジュールのカプセル属性から Cオブジェク ... ame はこの文字列に正確に一致しなければなりません。 no_block が真の時、モジュールを( PyImport_ImportModul ... eNoBlock() を使って) ブロックせずにインポートします。 ... yCapsule_Import() failed to import the module, and no_block was true, no exception is set. int PyCapsule ...
https://man.plustar.jp/python/c-api/capsule.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 7805
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。オプションの attr がある場合、デフォルト値は A_NORMAL です。 curses では以下の関数を定義しています: ... lues for the given color, which will be between 0 (no component) and 1000 (maximum amount of component). ... bility can be set to 0 , 1 , or 2 , for invisible, normal, or very visible. If the terminal supports the ... 致させます。 The virtual screen may be updated by a noutrefresh() call after write operations such as add ...
https://man.plustar.jp/python/library/curses.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 7696
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n tasks is to generate the flat (serialized) version of the email message represented by a message objec ... m scratch yourself. However the bundled generator knows how to generate most email in a standards-compli ... ant way, should handle MIME and non-MIME email messages just fine, and is designed so ... that the bytes-oriented parsing and generation operations are inverses, assuming the same non-tran ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT