Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 211 - 220 of about 273 for THE (0.171 sec.)
11.10. shutil --- 高水準のファイル操作 — Python 3.6.5 ドキュメント 4055
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 動作です。また、 cmd を path から検索するときに、 PATHEXT 環境変数も利用します。例えば、 shutil.which("pyt ... hon") を実行した場合、 which() は PATHEXT を参照して path ディレクトリから python.exe を探 ... ppend (( srcname , dstname , str ( why ))) # catch the Error from the recursive copytree so that we can # ... continue with other files except Error as err : errors . extend ( err ...
https://man.plustar.jp/python/library/shutil.html - [similar]
13. さあ何を? — Python 3.6.5 ドキュメント 4055
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... クセスを提供します。 https://pypi.python.org/pypi : The Python Package Index, previously also nicknamed th ... . Once you begin releasing code, you can register it here so that others can find it. https://code.active ...
https://man.plustar.jp/python/tutorial/whatnow.html - [similar]
例外処理 — Python 3.6.5 ドキュメント 4045
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ; PyExc_Warning is a subclass of PyExc_Exception ; the default warning category is PyExc_RuntimeWarning . ... The standard Python warning categories are available a ... e , & traceback ); /* ... code that might produce other errors ... */ PyErr_Restore ( type , value , trac ... lobal variables whose names are PyExc_ followed by the Python exception name. These have the type PyObjec ...
https://man.plustar.jp/python/c-api/exceptions.html - [similar]
ソケットプログラミング HOWTO — Python 3.6.5 ドキュメント 4045
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソケ ... AF_INET , socket . SOCK_STREAM ) # now connect to the web server on port 80 - the normal http port s . c ... ( socket . AF_INET , socket . SOCK_STREAM ) # bind the socket to a public host, and a well-known port ser ... = serversocket . accept () # now do something with the clientsocket # in this case, we'll pretend this is ...
https://man.plustar.jp/python/howto/sockets.html - [similar]
29.13. site --- サイト固有の設定フック — Python 3.6.5 ドキュメント 4045
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sep 区切りで表示されます。 If any option is given, the script will exit with one of these values: O if th ... ages directory is enabled, 1 if it was disabled by the user, 2 if it is disabled for security reasons or ... by an administrator, and a value greater than 2 if there is an error. 参考 PEP 370 -- ユーザごとの site-p ...
https://man.plustar.jp/python/library/site.html - [similar]
11.4. stat --- stat() の結果を解釈する — Python 3.6.5 ドキュメント 4045
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... alktree ( top , callback ): '''recursively descend the directory tree rooted at top, calling the callback ... lback ) elif S_ISREG ( mode ): # It's a file, call the callback function callback ( pathname ) else : # U ...
https://man.plustar.jp/python/library/stat.html - [similar]
20.8. xml.dom.pulldom --- 部分的な DOM ツリー構築のサポート — Python 3.6.5 ドキ... 4045
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... getEvent ( ) ¶ Return a tuple containing event and the current node as xml.dom.minidom.Document if event ... xml.dom.minidom.Text if event equals CHARACTERS . The current node does not contain information about it ...
https://man.plustar.jp/python/library/xml.dom.pulldom.html - [similar]
カプセル — Python 3.6.5 ドキュメント 4026
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... を使って) 通常の方法でインポートされます。 Return the capsule's internal pointer on success. On failure, ... . However, if PyCapsule_Import() failed to import the module, and no_block was true, no exception is set ...
https://man.plustar.jp/python/c-api/capsule.html - [similar]
7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 4026
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 。 Python supports this conversion in several ways: the idna codec performs conversion between Unicode and ... E, separating an input string into labels based on the separator characters defined in section 3.1 (1) of ... parating an input byte string into labels based on the . separator and converting any ACE labels found in ... to unicode. Furthermore, the socket module transparently converts Uni ...
https://man.plustar.jp/python/library/codecs.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 4026
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( c_s . value ) Hello World >>> c_s . value = "Hi, there" >>> print ( c_s ) # the memory location has cha ... r_p(139966783348904) >>> print ( c_s . value ) Hi, there >>> print ( s ) # first object is unchanged Hell ... >" , line 3 , in ValidHandle OSError : [Errno 126] The specified module could not be found. >>> WinError ... を試してみてください。 16.16.1.19. びっくり仰天 ¶ There are some edges in ctypes where you might expect ...
https://man.plustar.jp/python/library/ctypes.html - [similar]