Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 140 for Use (0.076 sec.)
正規表現 HOWTO — Python 3.6.5 ドキュメント 5862
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... L ) where it will match even a newline. . is often used where you want to match "any character". 繰り返し ... all, while + requires at least one occurrence. To use a similar example, ca+t will match 'cat' (1 'a' ), ... string notation or escaping the backslashes isn't used. 通常の文字列 Raw string "ab*" r"ab*" "\\\\sectio ... ch() should return None in this case, which will cause the interpreter to print no output. You can explic ...
https://man.plustar.jp/python/howto/regex.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 5862
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ments the client side of the FTP protocol. You can use this to write Python programs that perform a varie ... s, such as mirroring other FTP servers. It is also used by the module urllib.request to handle URLs that ... connect to host, default port >>> ftp . login () # user anonymous, passwd anonymous@ '230 Login successfu ... 項目を定義しています: class ftplib. FTP ( host='' , user='' , passwd='' , acct='' , timeout=None , source_ ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 5862
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e of the Network News Transfer Protocol. It can be used to implement a news reader or poster, or automate ... しています: class nntplib. NNTP ( host , port=119 , user=None , password=None , readermode=None , usenetrc ... ecified for the socket connection. If the optional user and password are provided, or if suitable credent ... ials are present in /.netrc and the optional flag usenetrc is true, the AUTHINFO USER and AUTHINFO PASS ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 5862
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... class MyTestCase1 ( unittest . TestCase ): # Only use setUp() and tearDown() if necessary def setUp ( se ... ssertion is always true" , SyntaxWarning ), ( "" , UserWarning )): exec ( 'assert(False, "Hey!")' ) warni ... ngs . warn ( UserWarning ( "Hide me!" )) この場合、どちらの警告も発 ... for testing without affecting the # version being used by the rest of the test suite. One copy uses the ...
https://man.plustar.jp/python/library/test.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 5862
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... にすることが出来ます。 バージョン 3.2.3 で追加. -s ¶ user site-packages directory を sys.path に追加しません ... to output the total reference count and number of used memory blocks when the program finishes or after ... ugh the standard streams are not affected. PYTHONNOUSERSITE ¶ この環境変数が設定されている場合、 Python は ... 0 -- ユーザごとの site-packages ディレクトリ PYTHONUSERBASE ¶ user base directory を設定します。これは py ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
18.7. asynchat --- 非同期ソケットコマンド/レスポンスハンドラ — Python 3.6.5 ド... 5791
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... empty the handle_write() method does nothing. You use the channel object's set_terminator() method to de ... e. When this producer is popped off the queue it causes the channel to be closed. async_chat. collect_inc ... ata out to the network, although it is possible to use your own producers in more complex schemes to impl ...
https://man.plustar.jp/python/library/asynchat.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 5791
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... findlinestarts ( code ) ¶ This generator function uses the co_firstlineno and co_lnotab attributes of th ... oto は再開されます。) All of the following opcodes use their arguments. STORE_NAME ( namei ) ¶ name = TOS ... ) ¶ This is similar to BUILD_TUPLE_UNPACK , but is used for f(*x, *y, *z) call syntax. The stack item at ... t ) ¶ This is similar to BUILD_MAP_UNPACK , but is used for f(**x, **y, **z) call syntax. The stack item ...
https://man.plustar.jp/python/library/dis.html - [similar]
18.8. signal --- 非同期イベントにハンドラを設定する — Python 3.6.5 ドキュメント 5791
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を立てます: It makes little sense to catch synchronous errors like SIGFPE or SIGSEGV that are caused by an ... apparently hang. From Python 3.3 onwards, you can use the faulthandler module to report on synchronous e ... てインストールされていないことを示します。 signal. pause ( ) ¶ シグナルを受け取るまでプロセスを一時停止しま ... unning system call to fail with InterruptedError . Use threading.get_ident() or the ident attribute of th ...
https://man.plustar.jp/python/library/signal.html - [similar]
21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 5791
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の場合上限はありません。 map is the socket map to use for connections (an initially empty dictionary is ... If not specified the asyncore global socket map is used. enable_SMTPUTF8 determines whether the SMTPUTF8 ... ption. Override this in subclasses to do something useful with this message. Whatever was passed in the c ... MTPUTF8 cannot be set to True at the same time. To use a custom SMTPChannel implementation you need to ov ...
https://man.plustar.jp/python/library/smtpd.html - [similar]
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 5791
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ng initialization. If specified, local_hostname is used as the FQDN of the local host in the HELO/EHLO co ... cified, the global default timeout setting will be used). If the timeout expires, socket.timeout is raise ... or 0 respectively) the OS default behavior will be used. 普通に使う場合は、初期化と接続を行ってから、 sen ... 。 The SMTP class supports the with statement. When used like this, the SMTP QUIT command is issued automa ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT