Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 140 for Use (0.122 sec.)
16.15. errno --- 標準の errno システムシンボル — Python 3.6.5 ドキュメント 5398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ームパイプのエラーです (Streams pipe error) errno. EUSERS ¶ ユーザが多すぎます (Too many users) errno. ENO ... ss family not supported by protocol) errno. EADDRINUSE ¶ アドレスは使用中です (Address already in use) er ... ク接続が切られました (Network dropped connection because of reset) errno. ECONNABORTED ¶ ソフトウェアによっ ... て接続が終了されました (Software caused connection abort) errno. ECONNRESET ¶ 接続がピアに ...
https://man.plustar.jp/python/library/errno.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 5398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ure statements specified by the flags argument are used in addition to those that would be used anyway. I ... tal string either with prefix "0o" or not, you can use either of the following ways. >>> ' %#o ' % 10 , ' ... escape' は正しくないバイト列を、Unicode の Private Use Area (私用領域) にある U+DC80 から U+DCFF のコード ... ransformation to instance method. For these cases, use this idiom: class C : builtin_open = staticmethod ...
https://man.plustar.jp/python/library/functions.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 5398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e character without deleting (usually you can also use the cursor key for this) C-f で一文字分文字削除なし ... On a blank line, it will contain the built-in and user-defined functions and classes in the current name ... 数が反映されます。 25.5.3.2. Startup failure ¶ IDLE uses a socket to communicate between the IDLE GUI proc ... ess and the user code execution process. A connection must be esta ...
https://man.plustar.jp/python/library/idle.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 5398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... h don't disable existing loggers, you will need to use a JSON format for the configuration, which will us ... e_existing_loggers as False in the configuration you send. logging.config. stopListening ( ) ¶ listen() を ... す。 However, a more generic mechanism is needed for user-defined objects which are not known to the loggin ... resolve to the handler from the id. If, however, a user defines a my.package.MyHandler which has an alter ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
9.1. numbers --- 数の抽象基底クラス — Python 3.6.5 ドキュメント 5398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t ( self ): return hash ( float ( self )) else : # Use tuple's hash to avoid a high collision rate on # s ...
https://man.plustar.jp/python/library/numbers.html - [similar]
21.14. poplib --- POP3 プロトコルクライアント — Python 3.6.5 ドキュメント 5398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rtfile are deprecated in favor of context . Please use ssl.SSLContext.load_cert_chain() instead, or let s ... う形の辞書を返します。 バージョン 3.4 で追加. POP3. user ( username ) ¶ userコマンドを送出します。応答はパ ... quit() が呼ばれるまでロックされます。 POP3. apop ( user , secret ) ¶ POP3サーバーにログオンするのに、より ... セキュアなAPOP認証を使用します。 POP3. rpop ( user ) ¶ POP3サーバーにログオンするのに、(UNIXのr-コマ ...
https://man.plustar.jp/python/library/poplib.html - [similar]
17.1. threading --- スレッドベースの並列処理 — Python 3.6.5 ドキュメント 5398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... : with pool_sema : conn = connectdb () try : # ... use connection ... finally : conn . close () 有限セマフ ... ss provides a simple synchronization primitive for use by a fixed number of threads that need to wait for ... スレッドに対して異なります。これは、特別な後始末 (housekeeping) を行うスレッドを選択するために使用すること ...
https://man.plustar.jp/python/library/threading.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 5398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ENCODING ¶ Token value that indicates the encoding used to decode the source bytes into text. The first t ... ding of source files it tokenizes. The function it uses to do this is available: tokenize. detect_encodin ... g ( readline ) ¶ The detect_encoding() function is used to detect the encoding that should be used to dec ... れていない場合、デフォルトの 'utf-8' が返されます。 Use open() to open Python source files: it uses detect ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
12. 仮想環境とパッケージ — Python 3.6.5 ドキュメント 5398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... dex by going to it in your web browser, or you can use pip 's limited search feature: ( tutorial-env ) $ ... e@kennethreitz.com License: Apache 2 .0 Location: /Users/akuchling/envs/tutorial-env/lib/python3.4/site-p ...
https://man.plustar.jp/python/tutorial/venv.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 5398
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... nt ( 'targets' , metavar = 'HOSTNAME' , # var name used in help msg nargs = '+' , # require one or more t ... msg explanation parser . add_argument ( '-u' , '--user' , # -u or --user option required = True , # make ... it a required argument help = 'login as user' ) コマンド文字列とともにこのパーサを呼び出してみ ... y.example.com', 'sleepy.example.com'] >>> result . user 'skycaptain' このパーサが自動的に作り出したヘルプ ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT