Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 130 for No (0.047 sec.)
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 7696
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... てしまいます。 ? を修飾子の後に追加すると、 非貪欲 (non-greedy) あるいは 最小一致 (minimal) のマッチになり ... 字列の先頭とマッチできます。 (?(id/name)yes-pattern|no-pattern) 与えられたグループ id あるいは name が存在 ... する場合、 yes-pattern とのマッチを、存在しない場合 no-pattern とのマッチを試みます。 no-pattern は省略可 ... . \B Matches the empty string, but only when it is not at the beginning or end of a word. This means tha ...
https://man.plustar.jp/python/library/re.html - [similar]
4. ソースコード配布物を作成する — Python 3.6.5 ドキュメント 7270
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... からファイルを除外することができます。 (もしくは、 --no-defaults オプションを使って、標準のファイル一式の定 ... に使われます。 含めるファイルのデフォルトセットは --no-defaults で無効化でき、標準で除外するセットは --no ... include" および "exclude" セットを無効化するには --no-defaults および --no-prune を使います。 第2に、単に ...
https://man.plustar.jp/python/distutils/sourcedist.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 7051
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... _self__ メソッドに結合しているインスタンス、または None 関数 __doc__ ドキュメント文字列 __name__ 関数の定 ... __globals__ 関数が定義されたグローバル名前空間 __annotations__ 仮引数名からアノテーションへのマッピング; ... ード中のインストラクションを示すインデックス tb_lineno 現在の Python ソースコードの行番号 tb_next このオブ ... コード中のインストラクションを示すインデックス f_lineno 現在の Python ソースコードの行番号 f_locals このフ ...
https://man.plustar.jp/python/library/inspect.html - [similar]
オペレーティングシステム関連のユーティリティ — Python 3.6.5 ドキュメント 6942
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... れる場合に真 (非ゼロ) を返します。これは isatty(fileno(fp)) が真になるファイルの場合です。グローバルなフラ ... use PyMem_RawFree() to free the memory. If size is not NULL , write the number of wide characters exclud ... を、エラー時は -1 を返します。 void PySys_ResetWarnOptions ( ) ¶ sys.warnoptions を、空リストにリセット ... します。 void PySys_AddWarnOption ( wchar_t *s ) ¶ sys.warnoptions に s を追加し ...
https://man.plustar.jp/python/c-api/sys.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 6833
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... om the class [bcd] , and finally ends with a 'b' . Now imagine matching this RE against the string 'abcb ... 位置の文字は 'b' なので成功。 The end of the RE has now been reached, and it has matched 'abcb' . This de ... hing engine goes as far as it can at first, and if no match is found it will then progressively back up ... lude that the string doesn't match the RE at all. Another repeating metacharacter is + , which matches o ...
https://man.plustar.jp/python/howto/regex.html - [similar]
21.10. urllib.robotparser --- robots.txt のためのパーザ — Python 3.6.5 ドキュメ... 6626
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ots.txt for the useragent in question. If there is no such parameter or it doesn't apply to the useragen ... ntry for this parameter has invalid syntax, return None . バージョン 3.6 で追加. request_rate ( useragen ... tuple RequestRate(requests, seconds) . If there is no such parameter or it doesn't apply to the useragen ... ntry for this parameter has invalid syntax, return None . バージョン 3.6 で追加. The following example d ...
https://man.plustar.jp/python/library/urllib.robotparser.html - [similar]
19.1.5. email.errors: 例外及び欠陥クラス — Python 3.6.5 ドキュメント 6516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... od will raise this error if the content type is unknown when the method is called. Header may raise this ... hat is supposed to be a continuation line that has no leading whitespace and looks like a header). excep ... tion email.errors. BoundaryError ¶ Deprecated and no longer used. exception email.errors. MultipartConv ... ありません。 しかしながら、 attach() メソッドを MIMENonMultipart から派生したインスタンス (たとえば MIMEI ...
https://man.plustar.jp/python/library/email.errors.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 6516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... arser.py Message object structures can be created in one of two ways: they can be created from whole clo ... an be created by parsing a serialized representation of the email message. The email package provides a ... sage instance of the object structure. For simple, non-MIME messages the payload of this root object wil ... returns the root object when you close the parser. Note that the parser can be extended in limited ways, ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 6516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す: class http.client. HTTPConnection ( host , port=None , [ timeout , ] source_address=None ) ¶ HTTPConn ... 。 class http.client. HTTPSConnection ( host , port=None , key_file=None , cert_file=None , [ timeout , ] ... source_address=None , * , context=None , check_hostname=None ) ¶ HTT ... lient. HTTPResponse ( sock , debuglevel=0 , method=None , url=None ) ¶ コネクションに成功したときに、この ...
https://man.plustar.jp/python/library/http.client.html - [similar]
Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 6407
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... { { "error_out" , ( PyCFunction ) error_out , METH_NOARGS , NULL }, { NULL , NULL } }; #if PY_MAJOR_VERS ... sule, destructor, dtor) /* * Sorry, there's simply no place * to store a Capsule "name" in a CObject. */ ... used ) { unused = unused ; PyErr_SetString ( PyExc_NotImplementedError , "can't use PyCapsule_SetName wi ... void * PyCapsule_Import ( const char * name , int no_block ) { PyObject * object = NULL ; void * return ...
https://man.plustar.jp/python/howto/cporting.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT