Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 61 for where (0.029 sec.)
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 17351
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... .datetime object. Return a pair (response, groups) where groups is a list representing the groups that are ... r newgroups() . Return a pair (response, articles) where articles is a list of message ids. このコマンドは ... IST ACTIVE command. Return a pair (response, list) where list is a list of tuples representing all the grou ... ch tuple has the form (group, last, first, flag) , where group is a group name, last and first are the last ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 10059
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... ne prefers declaring these in a separate block somewhere near the top of the C file, in the same way that i ... s the declaration of your "impl" function. This is where the builtin's implementation goes. Delete the exis ... _dumper_impl() . Similarly, you may have a problem where you want to give a parameter a specific Python nam ... nd the concept. Please avoid using optional groups wherever possible. To specify an optional group, add a [ ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 9335
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... the binary string to feed into sendmail's stdin , where the default policy would use \n line separators. S ... ust be "7 bit clean" (ASCII-only). This means that where necessary data will be encoded using either quoted ... ve the same values as the current instance, except where those attributes are given new values by the keywo ... allable that takes two arguments, name and value , where name is a header field name and value is an unfold ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 7871
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... RFC 5322 or RFC 6532 style field names and values, where the field name and value are separated by a colon. ... e tuple in the format (CHARSET, LANGUAGE, VALUE) , where CHARSET is a string naming the charset to be used ... /plain walk iterates over the subparts of any part where is_multipart() returns True , even though msg.get_ ...
https://man.plustar.jp/python/library/email.message.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 7871
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... he correct PATH_INFO , but this causes another bug where PATH_TRANSLATED is wrong. Luckily this variable is ... dler , i.e., by calling IISCGIHandler().run(app) , where app is the WSGI application object you wish to inv ... d web servers using Python 3 -- specifically, ones where the OS's actual environment is Unicode (i.e. Windo ... ws), or ones where the environment is bytes, but the system encoding ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7871
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... her than bytes. However, there are some situations where using bytes is sufficient and correct. Prior to Py ... -compatibility with older versions of the language where random iteration order is still in effect, e.g. Py ... ow use the tracemalloc module to get the traceback where a memory block was allocated. Example of fatal err ... odule is now used to try to retrieve the traceback where the destroyed object was allocated. スクリプト exa ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 7682
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... om the group are included in the list at the point where the group occurs in the value (that is, the list o ... ] < username @domain > もしくは: username @domain where each part must conform to specific syntax rules sp ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 7682
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ymbol = 'RHAT' c . execute ( "SELECT * FROM stocks WHERE symbol = ' %s '" % symbol ) # Do this instead t = ... ( 'RHAT' ,) c . execute ( 'SELECT * FROM stocks WHERE symbol=?' , t ) print ( c . fetchone ()) # Larger ... ute ( "select rowid, name, ingredients from recipe where name match 'pie'" ): print ( row ) load_extension ... named style: cur . execute ( "select * from people where name_last=:who and age=:age" , { "who" : who , "ag ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 7682
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ことが重要です。通常は単純ですが、クイックガイドには where-to-patch を読んでください。 テストの中でクラス属性 ... lly, we patch date in the module that uses it. See where to patch . When date.today() is called a known dat ... patch.dict で import をモックする ¶ One situation where mocking can be hard is where you have a local impo ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 7508
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... acter, and there's an alternate mode ( re.DOTALL ) where it will match even a newline. . is often used wher ... The most complicated repeated qualifier is {m,n} , where m and n are decimal integers. This qualifier means ... returned, containing information about the match: where it starts and ends, the substring it matched, and ... split() method of a pattern splits a string apart wherever the RE matches, returning a list of the pieces. ...
https://man.plustar.jp/python/howto/regex.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT