Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 107 for example (0.031 sec.)
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 13977
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 以下に完全かつ短い実行例を示します: """ This is the "example" module. The example module supplies one function, ... factorial(). For example, >>> factorial(5) 120 """ def factorial ( n ): """ ... = "__main__" : import doctest doctest . testmod () example.py をコマンドラインから直接実行すると、 doctest は ... その魔法を働かせます: $ python example.py $ 出力は何もありません!しかしこれが正常で、すべ ...
https://man.plustar.jp/python/library/doctest.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 10805
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を再帰的に探索します。 Python 2.x のサンプルコード、 example.py を示します: def greet ( name ): print "Hello, { ... thon 3.x code via 2to3 on the command line: $ 2to3 example.py A diff against the original source file is prin ... hanges back is enabled with the -w flag: $ 2to3 -w example.py 変換後、 example.py は以下のようになります: def ... the -x explicitly disables a fixer. The following example runs only the imports and has_key fixers: $ 2to3 - ...
https://man.plustar.jp/python/library/2to3.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 9987
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... licy = default ) . parsestr ( 'From: Foo Bar <user@example.com> \n ' 'To: <someone_else@example.com> \n ' 'Su ... e )) if __name__ == '__main__' : main () Here's an example of how to create an HTML message with an alternati ... g [ 'From' ] = Address ( "Pepé Le Pew" , "pepe" , "example.com" ) msg [ 'To' ] = ( Address ( "Penelope Pussyc ... at" , "penelope" , "example.com" ), Address ( "Fabrette Pussycat" , "fabrette" ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 9987
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... r will be raised. Also, OSError may be raised, for example if the file does not exist. バージョン 3.3 で変更: ... に対して呼ばれます。たとえば request ドメインが "www.example.com" だった場合、この関数は ".example.com" および ... "www.example.com" の両方に対して呼ばれることがあります。同じこと ... 適用されません。たとえばブラックリスト中のエントリ "example.com" は、 "example.com" にはマッチしますが、 "www. ...
https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 9271
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sing specialized information from the headers (for example the MIME content type), for operating on the paylo ... in to complete the transformation to a string (for example, MIME boundaries may be generated or modified). No ... in to complete the transformation to a string (for example, MIME boundaries may be generated or modified). No ... ntype() == 'multipart'" will return the True . For example, is_multipart will return True when the EmailMessa ...
https://man.plustar.jp/python/library/email.message.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 8555
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... converted to work with Argument Clinic yet. For my example I'm using _pickle.Pickler.dump() . PyArg_Parse 関数 ... olumn line at the beginning of the docstring. (Our example docstring consists solely of a summary line, so th ... nd use that for the name of the impl function. For example, if we wanted to rename the C function names gener ... words() doesn't directly support. The most obvious example is the builtin function range() , which has an opt ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 8145
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、ファクトリ関数を定義することができます。 A simple example (this is not recommended as a real way of generati ... r classes whose output is hardwired to stdout. For example, the output of help() normally is sent to sys.stdo ... where they are used (as shown in all of the usage examples above). Files are an example of effectively singl ... ng the same context manager. threading.RLock is an example of a reentrant context manager, as are suppress() ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 7941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... leDef_HEAD_INIT , . m_name = "custom" , . m_doc = "Example module that creates an extension type." , . m_size ... データとメソッドを追加する ¶ Let's extend the basic example to add some data and methods. Let's also make the ... eDef_HEAD_INIT , . m_name = "custom2" , . m_doc = "Example module that creates an extension type." , . m_size ... is no guarantee that tp_init is called at all (for example, the pickle module by default doesn't call __init_ ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
10.2. functools --- 高階関数と呼び出し可能オブジェクトの操作 — Python 3.6.5 ド... 7941
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) ... return wrapper ... >>> @my_decorator ... def example (): ... """Docstring""" ... print ( 'Called exampl ... e function' ) ... >>> example () Calling decorated function Called example funct ... ion >>> example . __name__ 'example' >>> example . __doc__ 'Docstr ... いと、上の例中の関数の名前は 'wrapper' となり、元の example() のドキュメンテーション文字列は失われてしまいます ...
https://man.plustar.jp/python/library/functools.html - [similar]
20.5. xml.etree.ElementTree --- ElementTree XML API — Python 3.6.5 ドキュメント 7839
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 1.0"?> <actors xmlns:fictional= "http://characters.example.com" xmlns= "http://people.example.com" > <actor> ... xt ) for actor in root . findall ( '{http://people.example.com}actor' ): name = actor . find ( '{http://peopl ... e.example.com}name' ) print ( name . text ) for char in acto ... r . findall ( '{http://characters.example.com}character' ): print ( ' |-->' , char . text ) ...
https://man.plustar.jp/python/library/xml.etree.elementtree.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT