Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 108 for objects (0.026 sec.)
21.28. ipaddress --- IPv4/IPv6 操作ライブラリ — Python 3.6.5 ドキュメント 14008
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ess オブジェクト ¶ The IPv4Address and IPv6Address objects share a lot of common attributes. Some attributes ... IPv6 addresses are also implemented by IPv4Address objects, in order to make it easier to write code that han ... dles both IP versions correctly. Address objects are hashable , so they can be used as keys in dict ... オブジェクト ¶ All attributes implemented by address objects are implemented by network objects as well. In add ...
https://man.plustar.jp/python/library/ipaddress.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 10627
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... difflib Helpers for computing differences between objects. dis Disassembler for Python bytecode. distutils S ... arse flat text email messages to produce a message object structure. email.policy Controlling the parsing and ... Higher-order functions and operations on callable objects. g gc Interface to the cycle-detecting garbage col ... for gzip compression and decompression using file objects. h hashlib Secure hash and message digest algorith ...
https://man.plustar.jp/python/py-modindex.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 9925
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... protocol has been implemented to support path-like objects . All standard library functions operating on path ... have historically been represented as str or bytes objects. This has led to people who write code which opera ... te on file system paths to assume that such objects are only one of those two types (an int representi ... fined. By implementing the __fspath__() method, an object signals that it represents a path. An object can th ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 9109
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ) . tp_name = "custom.Custom" , . tp_doc = "Custom objects" , . tp_basicsize = sizeof ( CustomObject ), . tp_ ... ) . tp_name = "custom.Custom" , . tp_doc = "Custom objects" , . tp_basicsize = sizeof ( CustomObject ), . tp_ ... ocstring は tp_doc に入れます。 . tp_doc = "Custom objects" , オブジェクトが生成できるように、 tp_new ハンドラ ... able to import custom and play around with Custom objects. そんなにむずかしくありません、よね? Of course, th ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 9109
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eals only with text, raw byte strings, and Message objects. Nevertheless, it provides significant advantages ... eError if they are not specified. For EmailMessage objects, set the maintype to message , and set the subtype ... ot. If subtype is partial , raise an error ( bytes objects must be used to construct message/partial parts). ... <'list'> , which should be a list of EmailMessage objects, set the maintype to multipart , and the subtype t ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
ソート HOW TO — Python 3.6.5 ドキュメント 8752
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソー ... . name , self . grade , self . age )) >>> student_objects = [ ... Student ( 'john' , 'A' , 15 ), ... Student ... ( 'dave' , 'B' , 10 ), ... ] >>> sorted ( student_objects , key = lambda student : student . age ) # sort by ... 'B', 12), ('john', 'A', 15)] >>> sorted ( student_objects , key = attrgetter ( 'age' )) [('dave', 'B', 10), ... 'B', 10), ('jane', 'B', 12)] >>> sorted ( student_objects , key = attrgetter ( 'grade' , 'age' )) [('john', ...
https://man.plustar.jp/python/howto/sorting.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 8637
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... essages, which not only provides customized header objects for various header types, but also provides an ext ... custom header types. When using any of the policy objects derived from EmailPolicy , all headers are produce ... 下の属性も提供しています: groups ¶ A tuple of Group objects encoding the addresses and groups found in the hea ... play_name is None . addresses ¶ A tuple of Address objects encoding all of the individual addresses from the ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
デスクリプタ HowTo ガイド — Python 3.6.5 ドキュメント 8292
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » デス ... が最も低いように実装されています。完全な C 実装は、 Objects/object.c の PyObject_GenericGetAttr() で見つかりま ... bute__ ( self , key ): "Emulate type_getattro() in Objects/typeobject.c" v = object . __getattribute__ ( self ... bute__() を使用した探索に戻ります。 実装の詳細は、 Objects/typeobject.c の super_getattro() と、 Guido's Tuto ... Property ( object ): "Emulate PyProperty_Type() in Objects/descrobject.c" def __init__ ( self , fget = None , ...
https://man.plustar.jp/python/howto/descriptor.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 8177
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nal parameters argument is a sequence of Parameter objects, which is validated to check that there are no par ... mplicit parameter names of the form .0 on the code objects used to implement comprehensions and generator exp ... se AttributeError). It can also return descriptors objects instead of instance members. If the instance __dic ... example slot descriptors or getset descriptors on objects implemented in C. The descriptor object is returne ...
https://man.plustar.jp/python/library/inspect.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 8063
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... essage, which might be a list of sub- EmailMessage objects. In addition to the normal dictionary methods for ... ing or bytes object, in the case of simple message objects, or a list of EmailMessage objects, for MIME conta ... nts such as multipart/* and message/rfc822 message objects. class email.message. EmailMessage ( policy=defaul ... e message's payload is a list of sub- EmailMessage objects, otherwise return False . When is_multipart() retu ...
https://man.plustar.jp/python/library/email.message.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT