Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 273 for THE (0.030 sec.)
Argument Clinic How-To — Python 3.6.5 ドキュメント 7720
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... g backwards compatibility for future versions. In other words: if you maintain an external C extension fo ... eriment with Argument Clinic in your own code. But the version of Argument Clinic that ships with CPython ... 意してください。 Find a Python builtin that calls either PyArg_ParseTuple() or PyArg_ParseTupleAndKeywords ... [clinic input] [clinic start generated code]*/ Cut the docstring and paste it in between the [clinic] lin ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 7438
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lates a set of attributes and methods that control the behavior of various components of the email packag ... es can be passed to various classes and methods in the email package to alter the default behavior. The s ... ettable values and their defaults are described below. There is a default ... policy used by all classes in the email package. For all of the parser classes and t ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 7418
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ド: Lib/email/message.py バージョン 3.6 で追加: [1] The central class in the email package is the EmailMes ... sage class, imported from the email.message module. It is the base class for the ... email object model. EmailMessage provides the core functionality for setting and querying header ... eaders and a payload (which is also referred to as the content ). Headers are RFC 5322 or RFC 6532 style ...
https://man.plustar.jp/python/library/email.message.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7360
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... えるようになりました。 標準ライブラリーの顕著な改善 The asyncio module has received new features, signific ... fair amount of bug fixes. Starting with Python 3.6 the asyncio module is no longer provisional and its AP ... operating on paths have been updated to work with the new protocol. datetime モジュールで 地域時間の曖昧 ... MALLOC 節 を参照してください。 セキュリティの改善: The new secrets module has been added to simplify the ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 7262
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の生成 ¶ ソースコード: Lib/email/generator.py One of the most common tasks is to generate the flat (seriali ... zed) version of the email message represented by a message object stru ... o send your message via smtplib.SMTP.sendmail() or the nntplib module, or print the message on the consol ... cture and producing a serialized representation is the job of the generator classes. As with the email.pa ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 7262
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... are represented by customized subclasses of str . The particular class used to represent a given header ... is determined by the header_factory of the policy in effect when the he ... aders are created. This section documents the particular header_factory implemented by the email ... des an extension mechanism for applications to add their own custom header types. When using any of the p ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 7038
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ject structures can be created in one of two ways: they can be created from whole cloth by creating an Em ... ailMessage object, adding headers using the dictionary interface, and adding payload(s) using ... set_content() and related methods, or they can be created by parsing a serialized representa ... tion of the email message. The email package provides a standa ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 7009
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... anager ¶ Base class for content managers. Provides the standard registry mechanisms to register converter ... s between MIME content and other representations, as well as the get_content and s ... rgs , **kw ) ¶ Look up a handler function based on the mimetype of msg (see next paragraph), call it, pas ... sing through all arguments, and return the result of the call. The expectation is that the ha ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 6989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... サポートが利用可能になる前に動作する必要があります。 The curses library provides fairly basic functionality ... , providing the programmer with an abstraction of a display contai ... ning multiple non-overlapping windows of text. The contents of a window can be changed in various way ... ng text, erasing it, changing its appearance---and the curses library will figure out what control codes ...
https://man.plustar.jp/python/howto/curses.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 6989
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ¶ ソースコード: Lib/nntplib.py This module defines the class NNTP which implements the client side of the ... cessors. It is compatible with RFC 3977 as well as the older RFC 977 and RFC 2980 . 以下にこのモジュールの ... rn a new NNTP object, representing a connection to the NNTP server running on host host , listening at po ... rt port . An optional timeout can be specified for the socket connection. If the optional user and passwo ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT