Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 331 for OF (0.082 sec.)
21.17. smtplib --- SMTP プロトコルクライアント — Python 3.6.5 ドキュメント 5919
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ion. It has methods that support a full repertoire of SMTP and ESMTP operations. If the optional host an ... . If specified, local_hostname is used as the FQDN of the local host in the HELO/EHLO command. Otherwise ... SSL instance behaves exactly the same as instances of SMTP . SMTP_SSL should be used for situations wher ... e SSL is required from the beginning of the connection and using starttls() is not appropr ...
https://man.plustar.jp/python/library/smtplib.html - [similar]
8.1. datetime --- 基本的な日付型および時間型 — Python 3.6.5 ドキュメント 5891
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ブジェクト d は d.tzinfo が None でなく d.tzinfo.utcoffset(d) が None を返さない場合、aware です。 d.tzin ... one であるか d.tzinfo が None でないが d.tzinfo.utcoffset(d) が None を返す場合、 d は naive です。 time ... ブジェクト t は t.tzinfo が None でなく t.tzinfo.utcoffset(None) が None を返さない場合に aware になって、 ... == t2 は真になります。(1) t1 = t2 - t3 Difference of t2 and t3 . Afterwards t1 == t2 - t3 and t2 == t1 ...
https://man.plustar.jp/python/library/datetime.html - [similar]
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 5727
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... on launcher for Windows supports most common forms of POSIX #! line, but there are other issues to consi ... : If you use "/usr/bin/env python" (or other forms of the "python" command, such as "/usr/bin/python"), ... no way to say "python X.Y or later", so be careful of using an exact version like "/usr/bin/env python3. ... ou will need to change your shebang line for users of Python 3.5, for example. Typically, you should use ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 5672
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... t's also possible to take the symmetric difference of two sets. This is the set of all elements in the u ... nion that aren't in the intersection. Another way of putting it is that the symmetric difference contai ... ath.insert(0, '/tmp/example.zip') # Add .zip file to front of path >>> import jwzthreading >>> jwzthread ... three major operating systems used today are Microsoft Windows, Apple's Macintosh OS, and the various Un ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 5644
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = 546 B We can see that Python has loaded 8173 KiB of module data (bytecode and constants), and that thi ... Similarly, the linecache module has cached 940 KiB of Python source code to format tracebacks, all of it ... loaded data most recently: on the import pdb line of the doctest module. The traceback may change if a ... None を返します。 gc.get_referrers() や sys.getsizeof() 関数も参照してください。 tracemalloc. get_traceb ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 5617
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ompatible with the standard library re module, but offers additional functionality and a more thorough U ... g, but only when it is not at the beginning or end of a word. This means that r'py\B' matches 'python' , ... 'py' , 'py.' , or 'py!' . \B is just the opposite of \b , so word characters in Unicode patterns are Un ... hes. The current locale does not change the effect of this flag unless the re.LOCALE flag is also used. ...
https://man.plustar.jp/python/library/re.html - [similar]
24.3. shlex --- 単純な字句解析 — Python 3.6.5 ドキュメント 5534
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... is a filename string, which sets the initial value of the infile attribute. If the instream argument is ... r to how real shells parse. This can take a number of values: the default value, False , preserves the b ... hon 3.5 and earlier. If set to True , then parsing of the characters ();<>|& is changed: any run of thes ... ed as a single token. If set to a non-empty string of characters, those characters will be used as the p ...
https://man.plustar.jp/python/library/shlex.html - [similar]
21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 5534
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... me. decode_data specifies whether the data portion of the SMTP transaction should be decoded using UTF-8 ... ients and data is a string containing the contents of the e-mail (which should be in RFC 5321 format). d ... ap. decode_data specifies whether the data portion of the SMTP transaction should be decoded using UTF-8 ... you need to override the SMTPServer.channel_class of your SMTPServer . バージョン 3.5 で変更: The decod ...
https://man.plustar.jp/python/library/smtpd.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 5507
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... C standard [C99] の 5.2.4.2.2 節 'Characteristics of floating types' を参照してください。 属性 float.h ... gits >>> format ( float ( s ), '.15g' ) # convert to float and back -> same value '3.14159265358979' ただ ... 加. sys. getallocatedblocks ( ) ¶ Return the number of memory blocks currently allocated by the interpret ... er, regardless of their size. This function is mainly useful for tra ...
https://man.plustar.jp/python/library/sys.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 5480
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... . tp_doc = "Custom objects" , . tp_basicsize = sizeof ( CustomObject ), . tp_itemsize = 0 , . tp_flags = ... . tp_doc = "Custom objects" , . tp_basicsize = sizeof ( CustomObject ), . tp_itemsize = 0 , . tp_new = P ... を持たせるために重要なのです。 . tp_basicsize = sizeof ( CustomObject ), . tp_itemsize = 0 , tp_basicsize ... ustom objects. そんなにむずかしくありません、よね? Of course, the current Custom type is pretty unintere ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT