Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 116 for when (0.010 sec.)
- Argument Clinic How-To — Python 3.6.5 ドキュメント 12252
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu
...
the junk that makes it a properly quoted C string. When you're done you should have just the text, based a...
line away. (The docstring doesn't need it anymore—when you use help() on your builtin in the future, the...
in the PyModuleDef or PyTypeObject as appropriate. When you declare a class, you must also specify two asp...
he body of the macro contains a trailing comma. So when you replace the existing static PyMethodDef struct...
- https://man.plustar.jp/python/howto/clinic.html - [similar]
- 19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 11463
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
¶ Return the entire message flattened as a string. When optional unixfrom is true, the envelope header is...
to producing messages serialized as "7 bit clean" when utf8 is False , which is the default. バージョン 3...
.6 で変更: the default behavior when maxheaderlen is not specified was changed from def...
rn the entire message flattened as a bytes object. When optional unixfrom is true, the envelope header is...
- https://man.plustar.jp/python/library/email.message.html - [similar]
- What's New In Python 3.6 — Python 3.6.5 ドキュメント 10962
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
ass__ classmethod will be called on the base class whenever a new subclass is created: class PluginBase :...
to include the new optional __set_name__() method. Whenever a new class is defined, the new method will be...
rrect. Prior to Python 3.6, data loss could result when using bytes paths on Windows. With this change, us...
efault to utf-8 encoding. This change only applies when using an interactive console, and not when redirec...
- https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
- 35.7. tty --- 端末制御のための関数群 — Python 3.6.5 ドキュメント 9959
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
では、以下の関数を定義しています: tty. setraw ( fd , when=termios.TCSAFLUSH ) ¶ ファイル記述子 fd のモードを...
raw モードに変えます。 when を省略すると標準の値は termios.TCSAFLUSH になり、...
s.tcsetattr() に渡されます。 tty. setcbreak ( fd , when=termios.TCSAFLUSH ) ¶ ファイル記述子 fd のモードを...
cbreakモードに変えます。 when を省略すると標準の値は termios.TCSAFLUSH になり、...
- https://man.plustar.jp/python/library/tty.html - [similar]
- 19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 9859
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
icy policy, via its pre-defined instance default . When a Message or EmailMessage object is created, it ac...
d by the program, then the policy can be specified when it is created. When a message is passed to a gener...
ys specify explicitly which policy you want to use when calling any of the classes and functions described...
r to use the RFC correct line separator characters when creating the binary string to feed into sendmail's...
- https://man.plustar.jp/python/library/email.policy.html - [similar]
- 6. 式 (expression) — Python 3.6.5 ドキュメント 8456
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
| "from" expression ] The yield expression is used when defining a generator function or an asynchronous g...
ho ( value = None ): ... print ( "Execution starts when 'next()' is called for the first time." ) ... try...
.. finally : ... print ( "Don't forget to clean up when 'close()' is called." ) ... >>> generator = echo (...
) >>> print ( next ( generator )) Execution starts when 'next()' is called for the first time. 1 >>> print...
- https://man.plustar.jp/python/reference/expressions.html - [similar]
- 19.1.5. email.errors: 例外及び欠陥クラス — Python 3.6.5 ドキュメント 8356
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
derParseError ¶ Raised under some error conditions when parsing the RFC 5322 headers of a message, this cl...
ll raise this error if the content type is unknown when the method is called. Header may raise this error...
for certain base64 decoding errors, and when an attempt is made to create a header that appears...
ので注意してください。 InvalidBase64PaddingDefect -- When decoding a block of base64 encoded bytes, the padd...
- https://man.plustar.jp/python/library/email.errors.html - [similar]
- 19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 8055
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ined by the header_factory of the policy in effect when the headers are created. This section documents th...
applications to add their own custom header types. When using any of the policy objects derived from Email...
II text as ASCII characters within a header value. When a value containing encoded words is passed to the...
mail . utils . format_datetime ( self . datetime ) When creating a DateHeader , value may be datetime inst...
- https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
- 29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 7855
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ジョン 3.4 で追加. 29.12.5. インタープリタスタック ¶ When the following functions return "frame records," ea...
getattr() and hasattr() can trigger code execution when fetching or checking for the existence of attribut...
e signature as getattr() but avoids executing code when it fetches attributes. inspect. getattr_static ( o...
9.12.7. ジェネレータおよびコルーチンの現在の状態 ¶ When implementing coroutine schedulers and for other ad...
- https://man.plustar.jp/python/library/inspect.html - [similar]
- 16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 7654
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
llow the file to rollover at a predetermined size. When the size is about to be exceeded, the file is clos...
ile is silently opened for output. Rollover occurs whenever the current log file is nearly maxBytes in len...
ount to at least 1, and have a non-zero maxBytes . When backupCount is non-zero, the system will save old...
.5 . The file being written to is always app.log . When this file is filled, it is closed and renamed to a...
- https://man.plustar.jp/python/library/logging.handlers.html - [similar]