Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 101 - 110 of about 274 for IN (0.176 sec.)
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 4742
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... の拡張と埋め込み » 3. Defining Extension Types: Assorted Topics ¶ この節ではさ ... PyObject_VAR_HEAD const char * tp_name ; /* For printing, in format "<module>.<name>" */ Py_ssize_t tp_ ... t standard operations */ destructor tp_dealloc ; printfunc tp_print ; getattrfunc tp_getattr ; setattrfu ... umber ; PySequenceMethods * tp_as_sequence ; PyMappingMethods * tp_as_mapping ; /* More standard operati ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 4742
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のような用途によく使われています: モジュールの docstring (ドキュメンテーション文字列) 中にある対話実行例の ... が書かれている通りに動作するか検証することで、docstring の内容が最新かどうかチェックする。 テストファイル ... rial ( n ): """Return the factorial of n, an exact integer >= 0. >>> [factorial(n) for n in range(6)] [1 ... s of floats are OK, but the float must be an exact integer: >>> factorial(30.1) Traceback (most recent c ...
https://man.plustar.jp/python/library/doctest.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 4742
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... >> from imaplib import IMAP4 >>> with IMAP4 ( "domain.org" ) as M : ... M . noop () ... ('OK', [b'Nothin ... ntext is a ssl.SSLContext object which allows bundling SSL configuration options, certificates and priva ... te keys into a single (potentially long-lived) structure. Ple ... e a legacy alternative to ssl_context - they can point to PEM-formatted private key and certificate chai ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 4742
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 関数によって) 文字列に変換できます。オブジェクトが print() 関数で印字されるとき、文字列に変換する関数が暗黙 ... でのみ、構文上同じ優先順位を持つさらに 2 つの演算子 in および not in がサポートされています。 4.4. 数値型 ... int , float , complex ¶ 数値型には 3 種類あります: 整 ... マシンでの浮動小数点型の精度と内部表現は、 sys.float_info から利用できます。複素数は実部と虚部を持ち、それ ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
29.10. __future__ --- future 文の定義 — Python 3.6.5 ドキュメント 4712
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... は MandatoryRelease より小さく、2つとも sys.version_info と同じフォーマットの5つのタプルからなります: ( P ... Y_MAJOR_VERSION , # the 2 in 2.1.0a3; an int PY_MINOR_VERSION , # the 1; an int ... PY_MICRO_VERSION , # the 0; an int PY_RELEASE_LEVEL , # "alpha", "beta", "candidate" ... or "final"; string PY_RELEASE_SERIAL # the 3; an int ) Opt ...
https://man.plustar.jp/python/library/__future__.html - [similar]
19.1.14. email.utils: 多方面のユーティリティ — Python 3.6.5 ドキュメント 4712
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... py There are a couple of useful utilities provided in the email.utils module: email.utils. localtime ( d ... t time. Otherwise dt argument should be a datetime instance, and it is converted to the local time zone ... according to the system time zone database. If dt is naive ... (that is, dt.tzinfo is None ), it is assumed to be in local time. In ...
https://man.plustar.jp/python/library/email.util.html - [similar]
13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 4712
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... カイブを作成するためのクラスです。 class zipfile. ZipInfo ( filename='NoName' , date_time=(1980 , 1 , 1 , ... このクラスのインスタンスは ZipFile オブジェクトの getinfo() および infolist() メソッドによって返されます。 ... ールドのタプルでなければなりません; フィールドは ZipInfo オブジェクト 節で説明されています。 zipfile. is_ ... ルゴリズムを作成した Phil Katz によるドキュメント。 Info-ZIP Home Page Info-ZIP プロジェクトによる ZIP ア ...
https://man.plustar.jp/python/library/zipfile.html - [similar]
urllib パッケージを使ってインターネット上のリソースを取得するには — Python 3.6.... 4683
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » urll ... u wish to retrieve a resource via URL and store it in a temporary location, you can do so via the urlret ... あります (しばしば、その URL は CGI (Common Gateway Interface) スクリプトや他の web アプリケーションを参照 ... llib.request url = 'http://www.someserver.com/cgi-bin/register.cgi' values = { 'name' : 'Michael Foord' ... values = urllib . parse . urlencode ( data ) >>> print ( url_values ) # The order may differ from below. ...
https://man.plustar.jp/python/howto/urllib2.html - [similar]
19.1.11. email.header: 国際化されたヘッダ — Python 3.6.5 ドキュメント 4683
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... dule is part of the legacy ( Compat32 ) email API. In the current API encoding and decoding of headers i ... the dictionary-like API of the EmailMessage class. In addition to uses in legacy code, this module can b ... e useful in applications that need to completely control the c ... haracter sets used when encoding headers. The remaining text in this section is th ...
https://man.plustar.jp/python/library/email.header.html - [similar]
16.15. errno --- 標準の errno システムシンボル — Python 3.6.5 ドキュメント 4683
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... に対応する整数値です。これらのシンボルの名前は、 linux/include/errno.h から借用されており、かなり網羅的 ... したプロセスは存在しません (No such process) errno. EINTR ¶ システムコールが中断されました (Interrupted sy ... stem call) 参考 このエラーは例外 InterruptedError にマップされます。 errno. EIO ¶ I/O ... プロセスがありません (No child processes) errno. EAGAIN ¶ 再試行してください (Try again) errno. ENOMEM ¶ 空 ...
https://man.plustar.jp/python/library/errno.html - [similar]
PREV 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 NEXT