Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 62 for protocol (0.058 sec.)
バッファプロトコル (buffer Protocol) — Python 3.6.5 ドキュメント 7195
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... stract objects layer) » バッファプロトコル (buffer Protocol) ¶ Pythonで利用可能ないくつかのオブジェクトは、下層 ... ファにアクセスすることが望まれます。 Pythonは buffer protocol の形式で C レベルの仕組みを提供します。このプロトコ ... , buf Table of Contents バッファプロトコル (buffer Protocol) buffer 構造体 バッファリクエストのタイプ リクエス ... の関数 前のトピックへ イテレータプロトコル (iterator protocol) 次のトピックへ 古いバッファプロトコル ナビゲーショ ...
https://man.plustar.jp/python/c-api/buffer.html - [similar]
What's New In Python 3.1 — Python 3.6.5 ドキュメント 6964
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ます: >>> s = { 1 , 2 , 3 } >>> pickle . dumps ( s , protocol = 0 ) b'c__builtin__\nset\np0\n((lp1\nL1L\naL2L\na ... L3L\natp2\nRp3\n.' >>> pickle . dumps ( s , protocol = 0 , fix_imports = False ) b'cbuiltins\nset\np0\n ... automatic name remapping in the pickle module for protocol 2 or lower can make Python 3.1 pickles unreadable ... in Python 3.0. One solution is to use protocol 3. Another solution is to set the fix_imports opti ...
https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
オブジェクトプロトコル (object protocol) — Python 3.6.5 ドキュメント 6747
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ct objects layer) » オブジェクトプロトコル (object protocol) ¶ PyObject * Py_NotImplemented ¶ 与えられたオブジ ... cts layer) 次のトピックへ 数値型プロトコル (number protocol) ナビゲーション 索引 モジュール | 次へ | 前へ | Py ...
https://man.plustar.jp/python/c-api/object.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 6747
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e specified in the request to the server. The IMAP protocol requires that at least one criterion be specified; ... for example: "[test]") violates RFC 3501 (the IMAP protocol). However, imaplib has historically allowed creati ... が IMAP4 のインスタンス上で定義されています: IMAP4. PROTOCOL_VERSION ¶ サーバから返された CAPABILITY 応答にある ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 6747
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ペレーションの詳細は、 RFC 821 (Simple Mail Transfer Protocol) や RFC 1869 (SMTP Service Extensions)を調べてくだ ... l_hostname=None , source_address=None ) ¶ The LMTP protocol, which is very similar to ESMTP, is heavily based ... なかった事です。 参考 RFC 821 - Simple Mail Transfer Protocol SMTP のプロトコル定義です。このドキュメントでは SM ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 6747
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... d_and_activate=True ) ¶ This uses the Internet TCP protocol, which provides for continuous streams of data bet ... g. The format of addresses varies depending on the protocol family; see the documentation for the socket modul ... e for details. For Internet protocols, this is a tuple containing a string giving the a ... ージョン 3.6 で変更: Support for the context manager protocol was added. Exiting the context manager is equivale ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 6675
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 要なのはクラスに変換された値を返す __conform__(self, protocol) メソッドを追加することです。引数 protocol は Prep ... areProtocol になります。 import sqlite3 class Point : def __in ... lf . x , self . y = x , y def __conform__ ( self , protocol ): if protocol is sqlite3 . PrepareProtocol : retu ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
bytearray オブジェクト — Python 3.6.5 ドキュメント 6603
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... * PyByteArray_FromObject ( PyObject *o ) ¶ buffer protocol を実装した任意のオブジェクト o から、新しいbytearr ...
https://man.plustar.jp/python/c-api/bytearray.html - [similar]
古いバッファプロトコル — Python 3.6.5 ドキュメント 6603
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... し , 単一 前のトピックへ バッファプロトコル (buffer Protocol) 次のトピックへ 具象オブジェクト (concrete object) ...
https://man.plustar.jp/python/c-api/objbuffer.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 6603
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ng . getLogger ( 'tcpserver' ) logger . warning ( 'Protocol problem: %s ' , 'connection reset' , extra = d ) w ... g like 2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection reset extra で渡される辞書のキ ... 8.0.1' , 'user' : 'fbloggs' } logging . warning ( 'Protocol problem: %s ' , 'connection reset' , extra = d ) w ... like: 2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection reset extra で渡される辞書のキ ...
https://man.plustar.jp/python/library/logging.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT