Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 76 for These (0.072 sec.)
21.28. ipaddress --- IPv4/IPv6 操作ライブラリ — Python 3.6.5 ドキュメント 7771
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rk objects implement additional attributes. All of these are common between IPv4Network and IPv6Network , s ... fied ¶ is_reserved ¶ is_loopback ¶ is_link_local ¶ These attributes are true for the network as a whole if ... ute documentation in IPv4Network . is_site_local ¶ These attribute is true for the network as a whole if it ... however, where you may wish to have ipaddress sort these anyway. If you need to do this, you can use this f ...
https://man.plustar.jp/python/library/ipaddress.html - [similar]
24.3. shlex --- 単純な字句解析 — Python 3.6.5 ドキュメント 7771
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ent is given, input will be taken from sys.stdin . The second optional argument is a filename string, which ... g of the characters ();<>|& is changed: any run of these characters (considered punctuation characters) is ... g of the characters ();<>|& is changed: any run of these characters is returned as a single token. While th ... nted with the characters ~-./*?= . That is because these characters can appear in file names (including wil ...
https://man.plustar.jp/python/library/shlex.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 7356
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... only be used effectively in a with statement once. These single use context managers must be created afresh ... sophisticated context managers may be "reentrant". These context managers can not only be used in multiple ... nce reentrant context managers are also reusable). These context managers support being used multiple times ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 7356
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ser API may be more convenient for such use cases. The semantics and results of the two parser APIs are ide ... eaderParser and HeaderParser can be much faster in these situations, since they do not attempt to parse the ... as a single message object with a string payload. These objects will return False for is_multipart() , and ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
23.2. locale --- 国際化サービス — Python 3.6.5 ドキュメント 7356
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... bindtextdomain() , and bind_textdomain_codeset() . These are similar to the same functions in the gettext m ... pplications should normally find no need to invoke these functions, and should use gettext instead. A known ... h internally invoke gettext() or dcgettext() . For these applications, it may be necessary to bind the text ...
https://man.plustar.jp/python/library/locale.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 7356
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ber input must be in the range minval .. maxval if these are given. If not, a hint is issued and the dialog ... window_height() have been eliminated. Methods with these names and functionality are now available only as ... methods of Screen . The functions derived from these remain available. (In fact already in Python 2.6 t ... n added Screen.textinput() and Screen.numinput() . These popup input dialogs and return strings and numbers ...
https://man.plustar.jp/python/library/turtle.html - [similar]
6. 式 (expression) — Python 3.6.5 ドキュメント 7356
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... e execution of the asynchronous generator. As with the send() method for a generator, this "sends" a value ... ssion must evaluate to an iterable . Elements from these iterables are treated as if they were additional p ... pport order comparison. Equality comparison across these types results in inequality, and ordering comparis ... on across these types raises TypeError . Sequences compare lexicog ...
https://man.plustar.jp/python/reference/expressions.html - [similar]
データ整列化 (data marshalling) のサポート — Python 3.6.5 ドキュメント 6940
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ? Should only non-negative values be written using these routines? long PyMarshal_ReadLongFromFile ( FILE * ...
https://man.plustar.jp/python/c-api/marshal.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 6940
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... lass. We'll create a new module, custom2 that adds these capabilities: #include <Python.h> #include "struct ... values or even deleted. We want to make sure that these attributes always contain strings. #include <Pytho ... ibute to get or set based on data in the closure.) The setter function is passed the Custom object, the new ... のリストが不要であることを検出し、解放できます。 In the second version of the Custom example, we allowed any ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 6940
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) . Allows str(msg) to produce a string containing the serialized message in a readable format. バージョン ... ws bytes(msg) to produce a bytes object containing the serialized message. is_multipart ( ) ¶ Return True i ... e that there are some semantic differences between these methods and a normal mapping (i.e. dictionary) int ... is always appended to the end of the header list. These semantic differences are intentional and are biase ...
https://man.plustar.jp/python/library/email.message.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT