Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 122 for using (0.026 sec.)
Argument Clinic How-To — Python 3.6.5 ドキュメント 13811
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... work with Argument Clinic yet. For my example I'm using _pickle.Pickler.dump() . PyArg_Parse 関数が以下のい ... ve a parameter different names in Python and in C, using the same "as" syntax: /*[clinic input] pickle.Pick ... rseTupleAndKeywords() was created. While functions using this approach can often be converted to use PyArg_ ... linic supports this alternate approach to parsing, using what are called optional groups . Optional groups ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 11388
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... previous example and writes the message to a file using the native line separators for the platform on whi ... is means that where necessary data will be encoded using either quoted-printable or base64 encoding. 8bit d ... ing Policy method is intended to be called by code using the email library to create policy instances with ... nd are not intended to be called by an application using the email package. A custom policy must implement ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 11276
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s and then regenerating the serialized byte stream using BytesGenerator should produce output identical to ... the input [1] . (On the other hand, using the generator on an EmailMessage constructed by pr ... nto something that contains only ASCII characters, using the standard email RFC Content Transfer Encoding t ... convert the bytes with the high bit set as needed using an ASCII-compatible Content-Transfer-Encoding . Th ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 10473
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... create a new email, or by parsing an input stream using a parser . But the policy can be changed when the ... message is serialized using a generator . This allows, for example, a generic ... essage to be parsed from disk, but to serialize it using standard SMTP settings when sending it to an email ... lications. Following those is a set of examples of using the fundamental parts of the APIs covered in the p ...
https://man.plustar.jp/python/library/email.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 9211
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ow possible to customize subclass creation without using a metaclass. The new __init_subclass__ classmethod ... an bytes. However, there are some situations where using bytes is sufficient and correct. Prior to Python 3 ... .6, data loss could result when using bytes paths on Windows. With this change, using by ... t to utf-8 encoding. This change only applies when using an interactive console, and not when redirecting f ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 8173
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ributeError : object has no attribute 'old_method' Using a specification also enables a smarter matching of ... nd yourself having to calculate an expected result using exactly the same algorithm as the code under test, ... for iteration is __iter__() , so we can mock this using a MagicMock . Here's an example class with an "ite ... ore them for later assertions. In this example I'm using another mock to store the arguments so that I can ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 8061
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... cations to add their own custom header types. When using any of the policy objects derived from EmailPolicy ... a header is determined by the name of the header, using a lookup table stored in the HeaderRegistry . All ... sets the date header to the current time and date using the current timezone offset. class email.headerreg ... an address list to be copied with groups intact by using the list obtained from the groups attribute of the ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
Download — Python 3.6.5 ドキュメント 7480
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Download Python 3.6.5 Documentati ... d tar archives and can be handled in the usual way using tar and the bzip2 program. The InfoZIP unzip progr ... tomary on that platform. These are created on Unix using the InfoZIP zip program. Problems If you have comm ...
https://man.plustar.jp/python/download.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 7258
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 子プロセスに継承されることがなくなりました。 On Unix using the spawn or forkserver start methods will also st ... a different context. In particular, locks created using the fork context cannot be passed to a processes s ... tarted using the spawn or forkserver start methods. 特定の開始方 ... えられます。 Connection objects are usually created using Pipe() -- see also リスナーとクライアント . class ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 7258
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... portion of the SMTP transaction should be decoded using UTF-8. When decode_data is False (the default), th ... ime. A dictionary can be specified in map to avoid using a global socket map. decode_data specifies whether ... portion of the SMTP transaction should be decoded using UTF-8. The default is False . decode_data and enab ... _lines ¶ Holds a list of the line strings (decoded using UTF-8) received from the client. The lines have th ...
https://man.plustar.jp/python/library/smtpd.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT