Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 162 for module (0.089 sec.)
8.8. weakref --- 弱参照 — Python 3.6.5 ドキュメント 5787
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ng the later part of the interpreter shutdown when module globals are liable to have been replaced by None . ... reference cycles from being garbage collected, and module globals are no longer forced to None during interp ... lled by a third party, such as running code when a module is unloaded: import weakref , sys def unloading_mo ... dule (): # implicit reference to the module globals from the function body weakref . finalize ...
https://man.plustar.jp/python/library/weakref.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 5787
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... t recent call last): File "<stdin>" , line 1 , in <module> RuntimeError : dictionary changed size during ite ... t recent call last): File "<stdin>" , line 1 , in <module> TypeError : cannot modify read-only memory >>> b ... ジを完全には含みませんが、代わりに 1 つの関数 import_module() を含む小さなサブセットがあります。 import_module ... われるパッケージの名前でなければなりません。 import_module() は、 import されたモジュールを sys.modules に挿入 ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
用語集 — Python 3.6.5 ドキュメント 5741
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... t ) もあります。代入も式ではなく文です。 extension module (拡張モジュール) C や C++ で書かれたモジュールで、 ... e garbage collector can be controlled using the gc module. generator (ジェネレータ) generator iterator を返す ... 。 loader モジュールをロードするオブジェクト。 load_module() という名前のメソッドを定義していなければなりませ ... n 2.3 Method Resolution Order を参照してください。 module (モジュール) Python コードの組織単位としてはたらく ...
https://man.plustar.jp/python/glossary.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 5741
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tesFeedParser , imported from the email.feedparser module, provides an API that is conducive to incremental ... oblems it found in a message. See the email.errors module for the list of defects that it can find. Here is ... BytesParser class, imported from the email.parser module, provides an API that can be used to parse a messa ... e in a bytes-like object or file. The email.parser module also provides Parser for parsing strings, and head ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
6.6. stringprep --- インターネットのための文字列調製 — Python 3.6.5 ドキュメン... 5741
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eprep で、国際化されたドメイン名に使われます。 The module stringprep only exposes the tables from RFC 3454. ... ge to represent them as dictionaries or lists, the module uses the Unicode character database internally. Th ... e module source code itself was generated using the mkstrin ...
https://man.plustar.jp/python/library/stringprep.html - [similar]
8.13. enum --- 列挙型のサポート — Python 3.6.5 ドキュメント 5684
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t recent call last): File "<stdin>" , line 1 , in <module> TypeError : '<' not supported between instances o ... >>> Animal = Enum ( 'Animal' , 'ANT BEE CAT DOG' , module = __name__ ) 警告 module が与えられない場合、Enum ... Enum ( value = 'NewEnumName' , names =<...> , * , module = '...' , qualname = '...' , type =< mixed - in cl ... TREUSE' : 7 , 'SEA_GREEN' : 11 , 'ROSEMARY' : 42 } module: 新しい Enum クラスが属するモジュールの名前です。 ...
https://man.plustar.jp/python/library/enum.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 5639
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... のうち簡単な方は Python 2.4 で実装されました: from module import names 文において、 names を丸括弧で囲むこと ... ジュールを探す綺麗な方法はありません; 一般的に、 sys.modules の中身から探す必要がありました。これはちょっとばか ... ethod. (Implemented by Thomas Wouters.) The struct module now compiles structure format strings into an inte ... y Bob Ippolito at the NeedForSpeed sprint.) The re module got a 1 or 2% speedup by switching to Python's all ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
例外処理 — Python 3.6.5 ドキュメント 5593
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... sage , PyObject *filename , int lineno , PyObject *module , PyObject *registry ) ¶ すべての警告の属性を明示的 ... 。そこに説明されているデフォルトの効果を得るために、 module と registry 引数は NULL に設定することができます。 ... , const char *filename , int lineno , const char *module , PyObject *registry ) ¶ PyErr_WarnExplicitObject( ... ) に似ていますが、 message と module が UTF-8 エンコードされた文字列であるところが異なり ...
https://man.plustar.jp/python/c-api/exceptions.html - [similar]
モジュールのインポート — Python 3.6.5 ドキュメント 5593
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... モジュールのインポート ¶ PyObject * PyImport_ImportModule ( const char *name ) ¶ Return value: New reference ... . この関数は下で述べる PyImport_ImportModuleEx() を単純化したインタフェースで、 globals および ... プレベルパッケージではなく名前つきモジュール (named module) になるようにします。 (残念ながらこのやり方には、 ... L を返します。インポートに失敗したモジュールは sys.modules に残りません。 この関数は常に絶対インポートを使用 ...
https://man.plustar.jp/python/c-api/import.html - [similar]
32.2. ast --- 抽象構文木 — Python 3.6.5 ドキュメント 5593
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... be None, whereas None means "no value" for object. module Python { mod = Module(stmt* body) | Interactive(st ... g) | Import(alias* names) | ImportFrom(identifier? module, alias* names, int? level) | Global(identifier* na ... ¶ 与えられた node (これは FunctionDef , ClassDef , Module のいずれかのノードでなければなりません) のドキュメ ...
https://man.plustar.jp/python/library/ast.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT