Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 52 for send (0.104 sec.)
What's New In Python 3.3 — Python 3.6.5 ドキュメント 7303
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... rom ではサブジェネレータは、呼び出し側スコープから send() されたり throw() された値を直接受け取ることができ ... accept values >>> for i in range ( 4 ): ... acc . send ( i ) ... >>> acc . send ( None ) # Finish the fir ... st tally >>> for i in range ( 5 ): ... acc . send ( i ) ... >>> acc . send ( None ) # Finish the sec ... この変更を推し進める一番本質にあったものは、たとえ send メソッドや throw メソッドとともに使われることを前提 ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
16.15. errno --- 標準の errno システムシンボル — Python 3.6.5 ドキュメント 7183
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... M ¶ 送信時の通信エラーです (Communication error on send) errno. EPROTO ¶ プロトコルエラーです (Protocol er ... 通信端点のシャットダウン後は送信できません (Cannot send after transport endpoint shutdown) errno. ETOOMANY ...
https://man.plustar.jp/python/library/errno.html - [similar]
関数型プログラミング HOWTO — Python 3.6.5 ドキュメント 7064
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 関数 ... 使わなくてはいけません。) ジェネレータに値を送るには send(value) メソッドを呼びます。 するとジェネレータのコ ... +SKIP 0 >>> next ( it ) #doctest: +SKIP 1 >>> it . send ( 8 ) #doctest: +SKIP 8 >>> next ( it ) #doctest: ... です。ジェネレータ関数を再開するために使うメソッドが send() しかないのだと確定してるのでない限り、式の値をそ ... のまま使ってはいけません。 ジェネレータには、 send() のほかにもメソッドが二つあります: throw(type, va ...
https://man.plustar.jp/python/howto/functional.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 6944
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tion サブクラスです。 exception http.client. CannotSendRequest ¶ ImproperConnectionState のサブクラスです。 ... exception http.client. CannotSendHeader ¶ ImproperConnectionState のサブクラスです。 ... ter the connection to the server has been made. It sends a line to the server consisting of the method str ... he HTTP version ( HTTP/1.1 ). To disable automatic sending of Host: or Accept-Encoding: headers (for examp ...
https://man.plustar.jp/python/library/http.client.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 6944
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lient_address [ 0 ])) print ( self . data ) # just send back the same data, but upper-cased self . request ... . sendall ( self . data . upper ()) if __name__ == "__mai ... す。1回の recv() の呼び出しは、クライアントから1回の sendall() 呼び出しで送信された分しか受け取りません。 ク ... . SOCK_STREAM ) as sock : # Connect to server and send data sock . connect (( HOST , PORT )) sock . senda ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 6944
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... port Template >>> t = Template ( '$ {village} folk send $$10 to $cause.' ) >>> t . substitute ( village = ... gham' , cause = 'the ditch fund' ) 'Nottinghamfolk send $10 to the ditch fund.' substitute() メソッドは、プ ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 6825
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... _stdout ( f ): help ( pow ) s = f . getvalue () To send the output of help() to a file on disk, redirect t ... as f : with redirect_stdout ( f ): help ( pow ) To send the output of help() to sys.stderr : with redirect ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 6825
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ta must be an object specifying additional data to send to the server, or None if no such data is needed. ... the type of data . Content-Length will be used to send bytes objects, while Transfer-Encoding: chunked as ... cified in RFC 7230 , Section 3.3.1 will be used to send files and other iterables. For an HTTP POST reques ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 6825
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 使わなくてはいけません。) ジェネレータに値を送るには send(value) メソッドを呼びます。するとジェネレータのコー ... next () 0 >>> print it . next () 1 >>> print it . send ( 8 ) 8 >>> print it . next () 9 >>> print it . ne ... です。ジェネレータ関数を再開するために使うメソッドが send() しかないのだと確信してるのでない限り、式の値をそ ... のまま使ってはいけません。 ジェネレータには、 send() のほかにも新しいメソッドが二つあります throw(typ ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
ライブラリと拡張 FAQ — Python 3.6.5 ドキュメント 6705
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... = "First=Josephine&MI=Q&Last=Public" # connect and send the server a path req = urllib . request . urlopen ... if not line : break msg += line # The actual mail send server = smtplib . SMTP ( 'localhost' ) server . s ... msg ) server . quit () Unix 限定の代わりの選択肢は sendmail を使うことです。sendmail プログラムの場所はシス ... テムによって様々です; あるときは /usr/lib/sendmail だったり、あるときは /usr/sbin/sendmail だった ...
https://man.plustar.jp/python/faq/library.html - [similar]
PREV 1 2 3 4 5 6 NEXT