Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 46 for Attributes (0.047 sec.)
35.6. termios --- POSIX スタイルの端末制御 — Python 3.6.5 ドキュメント 8879
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ければなりません。 termios. tcsetattr ( fd , when , attributes ) ¶ ファイル記述子 fd の端末属性を attributes から ... 取り出して設定します。 attributes は tcgetattr() が返すようなリストです。引数 when は ...
https://man.plustar.jp/python/library/termios.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 8573
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... method defined in UDPServer . Setting the various attributes also changes the behavior of the underlying server ... respective server_address and RequestHandlerClass attributes. fileno ( ) ¶ Return an integer file descriptor fo ... h() methods, and provide self.rfile and self.wfile attributes. The self.rfile and self.wfile attributes can be r ... quest data or return data to the client. The rfile attributes of both classes support the io.BufferedIOBase read ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 8131
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e request is used to set default values for cookie-attributes as well as for checking that the cookie is allowed ... okies, and also about newer or non-standard cookie-attributes such as port . 警告 もしクッキーの損失や欠損が望ま ... Cookieオブジェクト ¶ Cookie instances have Python attributes roughly corresponding to the standard cookie-attri ... ult values, because the max-age and expires cookie-attributes contain equivalent information, and because RFC 21 ...
https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 7994
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... w first document the header base classes and their attributes, followed by the API for modifying the behavior of ... vide an init method if it wishes to set additional attributes beyond those provided by BaseHeader itself. Such a ... bject will have non- None values for the following attributes: version ¶ バージョン番号 (文字列)、空白やコメント ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 7399
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... bj . __class__ , obj . __dict__ ) def load ( cls , attributes ): obj = cls . __new__ ( cls ) obj . __dict__ . up ... date ( attributes ) return obj クラスは、いくつかの特殊メソッドを提供 ... om self.__dict__ which contains # all our instance attributes. Always use the dict.copy() # method to avoid modi ... __setstate__ ( self , state ): # Restore instance attributes (i.e., filename and lineno). self . __dict__ . upd ...
https://man.plustar.jp/python/library/pickle.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 7399
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ew function will set the various import-controlled attributes based on the passed-in spec object. (Contributed b ... s been added. If possible, scandir() extracts file attributes while scanning a directory, removing the need to p ... subsequent system calls to determine file type or attributes, which may significantly improve performance. (Con ... 24 .) Windows において、新たに stat_result.st_file_attributes 属性が利用可能です。これは Windows API の GetFileI ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
20. 構造化マークアップツール — Python 3.6.5 ドキュメント 7109
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ジェクト 20.12.4. InputSource オブジェクト 20.12.5. Attributes インタフェース 20.12.6. AttributesNS インタフェース ...
https://man.plustar.jp/python/library/markup.html - [similar]
20.10. xml.sax.handler --- SAX ハンドラの基底クラス — Python 3.6.5 ドキュメント 7109
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 名を文字列として持ち、 attrs 引数は要素の属性を持つ Attributes インターフェイス ( Attributes インタフェース を参照 ... 使われている生の XML 1.0 名を持ち、要素の属性を持つ AttributesNS インターフェイス ( AttributesNS インタフェース を ...
https://man.plustar.jp/python/library/xml.sax.handler.html - [similar]
8. エラーと例外 — Python 3.6.5 ドキュメント 7109
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... or ): """Exception raised for errors in the input. Attributes: expression -- input expression in which the error ... on attempts a state transition that's not allowed. Attributes: previous -- state at beginning of transition next ...
https://man.plustar.jp/python/tutorial/errors.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 7109
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... . def __init__ ( self , extra ): ... self . _extra_attributes = extra ... def __getattr__ ( self , attr ): ... t ... ry : ... return self . _extra_attributes [ attr ] ... except KeyError : ... raise Attribute ... . def __init__ ( self , extra ): ... self . _extra_attributes = extra ... def __getattr__ ( self , attr ): ... t ... ry : ... return self . _extra_attributes [ attr ] ... except KeyError : ... raise Attribute ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
PREV 1 2 3 4 5 NEXT