Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 178 for This (0.045 sec.)
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 7389
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... he accumulator optional arguments: -h, --help show this help message and exit --sum sum the integers (defa ... h] [--foo FOO] optional arguments: -h, --help show this help message and exit --foo FOO foo help $ cd .. $ ... h] [--foo FOO] optional arguments: -h, --help show this help message and exit --foo FOO foo help このデフォ ... myprogram [-h] optional arguments: -h, --help show this help message and exit プログラム名は、 sys.argv[0] ...
https://man.plustar.jp/python/library/argparse.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 7278
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ture. For simple, non-MIME messages the payload of this root object will likely be a string containing the ... s undefined what happens if feed() is called after this method has been called. class email.parser. FeedPa ... t the input to the feed() method must be a string. This is of limited utility, since the only way for such ... like object instead of a file-like object. Calling this method on a bytes-like object is equivalent to wra ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 7223
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... ッチする文字クラスです。 The final metacharacter in this section is . . It matches anything except a newlin ... しを再び試みます。 A step-by-step example will make this more obvious. Let's consider the expression a[bcd] ... *b . This matches the letter 'a' , zero or more letters from ... and finally ends with a 'b' . Now imagine matching this RE against the string 'abcbd' . ステップ マッチした ...
https://man.plustar.jp/python/howto/regex.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 7223
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... to None , which means that by default the line length is controlled by the max_line_length of the policy. ... default policy obtained from the message instance. This can be used to control some of the formatting prod ... oundaries may be generated or modified). Note that this method is provided as a convenience and may not be ... xible API for serializing messages. Note also that this method is restricted to producing messages seriali ...
https://man.plustar.jp/python/library/email.message.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 7122
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tructure of the two classes is otherwise the same. This document describes the behavior under the default ... r max_line_length in the policy will be ignored by this method). The policy argument may be used to overri ... default policy obtained from the message instance. This can be used to control some of the formatting prod ... oundaries may be generated or modified). Note that this method is provided as a convenience and may not al ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 7122
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... on removed. Otherwise, None is returned. Note that this function only returns a meaningful name for actual ... unction() , isbuiltin() でない場合に真を返します。 This, for example, is true of int.__add__ . An object p ... assing this test has a __get__() method but not a __set__() me ... object's source code is unavailable, return None . This could happen if the object has been defined in C o ...
https://man.plustar.jp/python/library/inspect.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 7011
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... anything. It can't even be subclassed. 注釈 While this documentation showcases the standard distutils mod ... ned setuptools library. Documentation on how to do this is out of scope for this document and can be found ... す。 . tp_dealloc = ( destructor ) Custom_dealloc , This method first clears the reference counts of the tw ... ment. Otherwise, the compiler will emit a warning. This is object-oriented polymorphism, in C! We want to ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 6788
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... だからです。 class logging. Logger ¶ propagate ¶ If this attribute evaluates to true, events logged to this ... ) loggers, in addition to any handlers attached to this logger. Messages are passed directly to the ancest ... ねます。 setLevel ( level ) ¶ Sets the threshold for this logger to level . Logging messages which are less ... e emitted by whichever handler or handlers service this logger, unless a handler's level has been set to a ...
https://man.plustar.jp/python/library/logging.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 6521
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ey fixers: $ 2to3 -f imports -f has_key example.py This command runs every fixer except the apply fixer: $ ... ません。 2to3 can also refactor doctests. To enable this mode, use the -d flag. Note that only doctests wil ... l be refactored. This also doesn't require the module to be valid Python ... s in a reST document could also be refactored with this option. The -v option enables output of more infor ...
https://man.plustar.jp/python/library/2to3.html - [similar]
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 6521
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... in the message sub-module. The application can use this API to ask questions about an existing email, to c ... erator also handle streams of text characters, but this usage is discouraged as it is too easy to end up w ... when the message is serialized using a generator . This allows, for example, a generic email message to be ... ey identify multipart documents. For the most part this knowledge should only be required for more complex ...
https://man.plustar.jp/python/library/email.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT