Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 156 for all (0.194 sec.)
12.3. shelve --- Python オブジェクトの永続化 — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... key exists klist = list ( d . keys ()) # a list of all existing keys (slow!) # as d was opened WITHOUT wr ...
https://man.plustar.jp/python/library/shelve.html - [similar]
21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... is the socket map to use for connections (an initially empty dictionary is a suitable value). If not spe ... e of the channel. This will be either COMMAND initially and then DATA after the client sends a "DATA" lin ... client. received_data ¶ Holds a string containing all of the data sent by the client during the DATA sta ...
https://man.plustar.jp/python/library/smtpd.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .6.30 以降。 バージョン 3.3 で追加. socket. SIO_RCVALL ¶ socket. SIO_KEEPALIVE_VALS ¶ socket. SIO_LOOPBAC ... K_FAST_PATH ¶ RCVALL_* Windows の WSAIoctl() のための定数です。この定数 ... ントロールコードのみがサポートされています。 SIO_RCVALL , SIO_KEEPALIVE_VALS , SIO_LOOPBACK_FAST_PATH 。 バ ... については PEP 475 を参照してください)。 socket. sendall ( bytes [ , flags ] ) ¶ ソケットにデータを送信しま ...
https://man.plustar.jp/python/library/socket.html - [similar]
26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 最も基本的なサポートとして Any 、 Union 、 Tuple 、 Callable 、 TypeVar および Generic 型を含みます。完全な ... バック関数であることが期待されるフレームワークでは Callable[[Arg1Type, Arg2Type], ReturnType] のように使っ ... 型ヒントを与えられます。 例えば: from typing import Callable def feeder ( get_next_item : Callable [[], str ... ) -> None : # Body def async_query ( on_success : Callable [[ int ], None ], on_error : Callable [[ int , ...
https://man.plustar.jp/python/library/typing.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 5179
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... errno in ( EACCES , EPERM ): print ( "You are not allowed to read document.txt" ) else : raise は errno ... g" ) except PermissionError : print ( "You are not allowed to read document.txt" ) 参考 PEP 3151 - Rework ... に最終的な値を返せます: >>> def accumulate (): ... tally = 0 ... while 1 : ... next = yield ... if next is ... None : ... return tally ... tally += next ... >>> def gather_tallies ( ta ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
モジュールのインポート — Python 3.6.5 ドキュメント 5064
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... なくサブパッケージを指定している場合、パッケージの __all__ 変数に指定されているサブモジュールがロードされて ... ーティリティ 次のトピックへ データ整列化 (data marshalling) のサポート ナビゲーション 索引 モジュール | 次 ...
https://man.plustar.jp/python/c-api/import.html - [similar]
Python モジュールのインストール (旧版) — Python 3.6.5 ドキュメント 5064
ナビゲーション 索引 モジュール | 前へ | Python » 3.6.5 ドキュメント » Python モジュールのインスト ... トーラをダウンロードして、例えば RPM なら rpm --install などの方法でインストーラを実行します。Python や se ... という説明が書かれているはずです python setup.py install Windows ではこのコマンドは、コマンドプロンプトのウ ... 、このように実行するのに違いありません setup.py install 上記の全てが当てはまるなら、ダウンロードしたものを ... の単純な以下コマンドで行います: python setup.py install プラットフォームによる違い ¶ setup コマンドは常に配 ...
https://man.plustar.jp/python/install/index.html - [similar]
18.5.9. asyncio での開発 — Python 3.6.5 ドキュメント 5064
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のログを取ります 誤ったスレッドから呼ばれた場合、 call_soon() や call_at() メソッドが例外を送出します セレ ... を超えるコールバックのログ。 AbstractEventLoop.slow_callback_duration 属性には "遅い" コールバックとみなす最 ... (): fut . set_result ( 'done' ) AbstractEventLoop.call_soon() で、Future の set_result() メソッドまたは s ... ルバックをスケジュールする場合、 AbstractEventLoop.call_soon_threadsafe() メソッドを使用してください。例: ...
https://man.plustar.jp/python/library/asyncio-dev.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 5064
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ortmessage, longmessage)} . The shortmessage is usually used as the message key in an error response, and ... response() should be followed by an end_headers() call. バージョン 3.3 で変更: Headers are stored to an i ... nternal buffer and end_headers() needs to be called explicitly. send_header ( keyword , value ) ¶ Ad ... fying its value. Note that, after the send_header calls are done, end_headers() MUST BE called in order t ...
https://man.plustar.jp/python/library/http.server.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 5064
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... created, the level is set to NOTSET (which causes all messages to be processed when the logger is the ro ... uch as INFO . Note, however, that levels are internally stored as integers, and methods such as e.g. getE ... wing a header line which says: Stack (most recent call last): これは、例外フレームを表示する場合に使用され ... る Traceback (most recent call last): を模倣します。 3番目のキーワード引数は extr ...
https://man.plustar.jp/python/library/logging.html - [similar]
PREV 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT