Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 162 for module (0.072 sec.)
8. エラーと例外 — Python 3.6.5 ドキュメント 6233
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... t recent call last): File "<stdin>" , line 1 , in <module> ZeroDivisionError : division by zero >>> 4 + spam ... t recent call last): File "<stdin>" , line 1 , in <module> NameError : name 'spam' is not defined >>> '2' + ... t recent call last): File "<stdin>" , line 1 , in <module> TypeError : Can't convert 'int' object to str imp ... t recent call last): File "<stdin>" , line 1 , in <module> NameError : HiThere raise の唯一の引数は送出される ...
https://man.plustar.jp/python/tutorial/errors.html - [similar]
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 6039
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... object model interface defined in the message sub-module. The application can use this API to ask questions ... y or another.) The control component is the policy module. Every EmailMessage , every generator , and every ... ジュール SMTP (Simple Mail Transport Protcol) client Module poplib POP (Post Office Protocol) client モジュール ... messages on disk using a variety standard formats. Module smtpd SMTP server framework (primarily useful for ...
https://man.plustar.jp/python/library/email.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 5982
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... イトが先頭) では 'little' となります。 sys. builtin_module_names ¶ コンパイル時にPythonインタプリタに組み込ま ... (この情報は、他の手段では取得することができません。 modules.keys() は、インポートされたモジュールのみのリスト ... c names for the flag values can be found in the os module ( RTLD_xxx constants, e.g. os.RTLD_LAZY ). Availab ... s called to see if one of the objects can find the module to be imported. The find_spec() method is called w ...
https://man.plustar.jp/python/library/sys.html - [similar]
26.4. unittest --- ユニットテストフレームワーク — Python 3.6.5 ドキュメント 5982
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... トを実行することが出来ます: python - m unittest test_module1 test_module2 python - m unittest test_module . Te ... stClass python - m unittest test_module . TestClass . test_method モジュール名ならびに完全 ... -v フラグを渡します: python - m unittest - v test_module 引数無しで実行すると テストディスカバリ が開始され ... main() will do the right thing and collect all the module's test cases for you, and then execute them. しかし ...
https://man.plustar.jp/python/library/unittest.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 5936
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... す: python [ -bBdEhiIOqsSuvVWx? ] [ -c command | -m module-name | script | - ] [ args ] もちろん、もっとも一般 ... モジュールとして import 出来るようになります)。 -m <module-name> ¶ sys.path から指定されたモジュール名のモジュ ... 内容を __main__ モジュールとして実行します。 引数は module 名なので、拡張子 ( .py ) を含めてはいけません。モジ ... ュール名は有効な Python の絶対モジュール名 (absolute module name) であるべきですが、実装がそれを強制していると ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
What's New in Python 2.1 — Python 3.6.5 ドキュメント 5936
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... がらかっているので。 この変更の副作用の一つは、 from module import * と exec の両ステートメントが特定の条件下の ... on のリファレンスマニュアルははじめからずっと from module import * はトップレベルモジュールでのみ合法であると ... するために別のコードを生成する必要があります。 from module import * , exec はコンパイラにこれを理解することを ... rt regex __main__:1: DeprecationWarning: the regex module is deprecated; please use the re module >>> 警告は ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 5890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... す。この新たなモジュール、拡張モジュール ( extention module ) を使うと、Python が直接行えない二つのこと: 新しい ... くれます。 1.1. 簡単な例 ¶ Let's create an extension module called spam (the favorite food of Monty Python fan ... >>> status = spam . system ( "ls -l" ) まずは spammodule.c を作成するところから始めます。 (伝統として、 spa ... する場合、モジュールの実装が入った C ファイルを spammodule.c と呼ぶことになっています; spammify のように長すぎ ...
https://man.plustar.jp/python/extending/extending.html - [similar]
プログラミング FAQ — Python 3.6.5 ドキュメント 5890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... の結果は一意でないように見えるのですか? モジュール (module) .pyc ファイルを作るにはどうしますか? 現在のモジュ ... るにはどうしたらいいですか? __import__('x.y.z') は <module 'x'> を返しますが、z を得るためにはどうしますか? イ ... の「ベストプラクティス」は何ですか? ¶ 一般的に from modulename import * を使ってはいけません。そのようにすると ... an によれば: 循環参照は両方のモジュールが "import <module>" 形式のインポートを使っていれば大丈夫です。二つ目 ...
https://man.plustar.jp/python/faq/programming.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 5890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... bject at 0x...> >>> print ( windll . kernel32 . GetModuleHandleA ) <_FuncPtr object at 0x...> >>> print ( wi ... t recent call last): File "<stdin>" , line 1 , in <module> File "ctypes.py" , line 239 , in __getattr__ func ... れたモジュールの モジュールハンドル を返す win32 GetModuleHandle 関数は次のような C プロトタイプを持ちます。 ... NICODE バージョンが定義されているかどうかにより GetModuleHandle としてどちらか一つを公開するためにマクロが使 ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 5890
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... をインポートするのを簡単にするためのものです。 from module import names 文において、 names はカンマ区切りのシ ... them to the Python Software Foundation. The locale module can now change the numeric locale, letting extensi ... ビットや 64 ビットに制限されません ( PEP 237 ). from module import names ステートメントにおいて、 names を括弧 ... ttinger.) Encountering a failure while importing a module no longer leaves a partially-initialized module ob ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT