Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 230 for NAME (0.141 sec.)
タプルオブジェクト (tuple object) — Python 3.6.5 ドキュメント 4499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ence オブジェクト ¶ struct sequence オブジェクトは namedtuple() オブジェクトと等価なC オブジェクトです。 つ ... 型のメタデータを保持します。 フィールド C の型 意味 name char * 生成するstruct sequence 型の名前 doc char * ... 記載しているかが決まります。 フィールド C の型 意味 name char * フィールドの名前。もし名前づけされたフィール ... L 。名前がないままにする場合は、PyStructSequence_UnnamedField を設定します doc char * フィールドのdocstrin ...
https://man.plustar.jp/python/c-api/tuple.html - [similar]
10.2. functools --- 高階関数と呼び出し可能オブジェクトの操作 — Python 3.6.5 ド... 4499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... この関数は hits , misses , maxsize , currsize を示す named tuple を返します。マルチスレッド環境では、hits と ... ( self , other ): return ( hasattr ( other , "lastname" ) and hasattr ( other , "firstname" )) def __eq__ ... ther ): return NotImplemented return (( self . lastname . lower (), self . firstname . lower ()) == ( othe ... r . lastname . lower (), other . firstname . lower ())) def __l ...
https://man.plustar.jp/python/library/functools.html - [similar]
21.15. imaplib --- IMAP4 プロトコルクライアント — Python 3.6.5 ドキュメント 4499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 3.4 で変更: このクラスは ssl.SSLContext.check_hostname と Server Name Indication でホスト名のチェックをサ ... be sent instead. バージョン 3.5 で変更: string usernames and passwords are now encoded to utf-8 instead of ... ち自分がmailboxで持っている権限を返します)。 IMAP4. namespace ( ) ¶ Returns IMAP namespaces as defined in R ... そうでない場合 RECENT 応答の値になります。 IMAP4. rename ( oldmailbox , newmailbox ) ¶ oldmailbox という名前 ...
https://man.plustar.jp/python/library/imaplib.html - [similar]
32.1. parser --- Python 解析木にアクセスする — Python 3.6.5 ドキュメント 4499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 1 は、ユーザが定義した変数名と関数名を含むすべての NAME トークンに対応する数値です。行番号情報が必要なとき ... ックされます。 終端トークンを表すシーケンスは、 (1, 'name') 形式の二つの要素のリストか、または (1, 'name', 5 ... この情報は省かれます。 parser. compilest ( st , filename='<syntax-tree>' ) ¶ 組み込みの exec() や eval() 関 ... の関数はコンパイラへのインターフェイスを提供し、 filename パラメータで指定されるソースファイル名を使って、 s ...
https://man.plustar.jp/python/library/parser.html - [similar]
21.18. smtpd --- SMTP サーバー — Python 3.6.5 ドキュメント 4499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... \n.\r\n" . fqdn ¶ Holds the fully-qualified domain name of the server as returned by socket.getfqdn() . pe ... er ¶ Holds the name of the client peer as returned by conn.getpeername ... onn . The SMTPChannel operates by invoking methods named smtp_<command> upon reception of a command line f ...
https://man.plustar.jp/python/library/smtpd.html - [similar]
7.1. struct --- バイト列をパックされたバイナリデータとして解釈する — Python 3.6... 4499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... アンパックした結果のフィールドは、変数に割り当てるか named tuple でラップすることによって名前を付けることがで ... >>> record = b 'raymond \x32\x12\x08\x01\x08 ' >>> name , serialnum , school , gradelevel = unpack ( '<10s ... HHb' , record ) >>> from collections import namedtuple >>> Student = namedtuple ( 'Student' , 'name ... t . _make ( unpack ( '<10sHHb' , record )) Student(name=b'raymond ', serialnum=4658, school=264, gradeleve ...
https://man.plustar.jp/python/library/struct.html - [similar]
32.4. symbol --- Python 解析木と共に使われる定数 — Python 3.6.5 ドキュメント 4499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... オブジェクトも一つ付け加えられています: symbol. sym_name ¶ ディクショナリはこのモジュールで定義されている定 ...
https://man.plustar.jp/python/library/symbol.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 4499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... call last): File "<stdin>" , line 1 , in <module> NameError : name 'n' is not defined 浮動小数点を完全にサ ... 付けた raw strings が使えます: >>> print ( 'C:\some \n ame' ) # here \n means newline! C:\some ame >>> print ... ( r 'C:\some\name' ) # note the r before the quote C:\some\name 文字 ... ngy [OPTIONS] -h Display this usage message -H hostname Hostname to connect to """ ) は次のような出力になり ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
コードオブジェクト — Python 3.6.5 ドキュメント 4458
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... gs , PyObject *code , PyObject *consts , PyObject *names , PyObject *varnames , PyObject *freevars , PyObj ... ect *cellvars , PyObject *filename , PyObject *name , int firstlineno , PyObject *lno ... 。 PyCodeObject * PyCode_NewEmpty ( const char *filename , const char *funcname , int firstlineno ) ¶ 新しい ...
https://man.plustar.jp/python/c-api/code.html - [similar]
6. Python Package Index (PyPI) — Python 3.6.5 ドキュメント 4458
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... which key to use for signing using the --identity=name option. upload コマンドの追加のオプションについては ... rc . If this file exists, the command uses the username, password, and repository URL configured in the fi ... ers = pypi [pypi] repository: <repository-url> username: <username> password: <password> distutils セクショ ... ォルトは https://upload.pypi.org/legacy/ です。 username は PyPI サーバーに登録されたユーザー名です。 passw ...
https://man.plustar.jp/python/distutils/packageindex.html - [similar]