Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 141 - 150 of about 249 for FOR (0.151 sec.)
デスクリプタ HowTo ガイド — Python 3.6.5 ドキュメント 4578
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » デス ... . . def getvalue ( self ): "Recalculate the cell before returning value" self . recalc () return self . _ ... In a class definition, methods are written using def or lambda , the usual tools for creating functions. ... r functions in that the first argument is reserved for the object instance. By Python convention, the ins ... thod calls, functions include the __get__() method for binding methods during attribute access. This mean ...
https://man.plustar.jp/python/howto/descriptor.html - [similar]
urllib パッケージを使ってインターネット上のリソースを取得するには — Python 3.6.... 4578
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » urll ... on の例がついています。 urllib.request は URLs (Uniform Resource Locators) を取得するための Python モジュ ... プロードするための詳細については HTML Specification, Form Submission を見て下さい)。 data 引数を渡さない場合 ... なエラーには '404' (page not found), '403' (request forbidden) と '401' (authentication required) が含まれ ... ます。 See section 10 of RFC 2616 for a reference on all the HTTP error codes. 送出された ...
https://man.plustar.jp/python/howto/urllib2.html - [similar]
21.23. http.cookies --- HTTPの状態管理 — Python 3.6.5 ドキュメント 4578
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 加します。辞書の場合は次と同様の処理をおこないます。 for k , v in rawdata . items (): cookie [ k ] = v 21.2 ... cookies . SimpleCookie () >>> C [ "twix" ] = "none for you" >>> C [ "twix" ] . value 'none for you' >>> C ...
https://man.plustar.jp/python/library/http.cookies.html - [similar]
19.4. mailbox --- 様々な形式のメールボックス操作 — Python 3.6.5 ドキュメント 4578
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ージ Maildir 形式のオリジナルの仕様。 Using maildir format Maildir 形式の発明者による注意書き。更新された名 ... ring Netscape Mail on Unix: Why The Content-Length Format is Bad バリエーションの一つではなくオリジナルの ... の改良版である nmh のホームページ。 MH & nmh: Email for Users & Programmers GPLライセンスの mh および nmh ... ならば flock() と lockf() システムコールです。 参考 Format of Version 5 Babyl Files Babyl 形式の仕様。 Rea ...
https://man.plustar.jp/python/library/mailbox.html - [similar]
21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 4578
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... The aiosmtpd package is a recommended replacement for this module. It is based on asyncio and provides a ... more straightforward API. smtpd should be considered deprecated. サ ... 場合上限はありません。 map is the socket map to use for connections (an initially empty dictionary is a su ... ontents of the e-mail (which should be in RFC 5321 format). decode_data コンストラクタ引数が True の場合、 ...
https://man.plustar.jp/python/library/smtpd.html - [similar]
2. 字句解析 — Python 3.6.5 ドキュメント 4578
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... sequence. In source files, any of the standard platform line termination sequences can be used - the Unix ... form using ASCII LF (linefeed), the Windows form using ... return followed by linefeed), or the old Macintosh form using the ASCII CR (return) character. All of the ... se forms can be used equally, regardless of platform. Pyt ...
https://man.plustar.jp/python/reference/lexical_analysis.html - [similar]
7. 単純文 (simple statement) — Python 3.6.5 ドキュメント 4578
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... t hand side is present, an annotated assignment performs the actual assignment before evaluating annotati ... applicable). If the right hand side is not present for an expression target, then the interpreter evaluat ... es the target except for the last __setitem__() or __setattr__() call. 参考 ... ¶ break_stmt ::= "break" break 文は、構文としては for ループや while ループの内側でのみ出現することができ ...
https://man.plustar.jp/python/reference/simple_stmts.html - [similar]
メモリ管理 — Python 3.6.5 ドキュメント 4548
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... stand that the management of the Python heap is performed by the interpreter itself and that the user has ... cks inside that heap. The allocation of heap space for Python objects and other internal buffers is perfo ... es ; char * buf = ( char * ) malloc ( BUFSIZ ); /* for I/O */ if ( buf == NULL ) return PyErr_NoMemory () ... therwise, or if PyMem_RawFree(p) has been called before, undefined behavior occurs. p が NULL の場合何もし ...
https://man.plustar.jp/python/c-api/memory.html - [similar]
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 4548
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... coding from strings, but it does provide functions for encoding and decoding to and from file objects . I ... ers as per RFC 2045 . Note that if you are looking for RFC 2045 support you probably want to be looking a ... ose Internet Mail Extensions) Part One: Mechanisms for Specifying and Describing the Format of Internet M ...
https://man.plustar.jp/python/library/base64.html - [similar]
21.14. poplib --- POP3 プロトコルクライアント — Python 3.6.5 ドキュメント 4548
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... text() select the system's trusted CA certificates for you. 1つの例外が、 poplib モジュールのアトリビュー ... getpass ()) numMessages = len ( M . list ()[ 1 ]) for i in range ( numMessages ): for j in M . retr ( i ...
https://man.plustar.jp/python/library/poplib.html - [similar]