Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 230 for NAME (0.124 sec.)
4. 実行モデル — Python 3.6.5 ドキュメント 4416
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 縛 (naming and binding) ¶ 4.2.1. 名前の束縛 ¶ 名前 (name) は、オブジェクトを参照します。名前を導入するには、 ... 名前への束縛 (name binding) 操作を行います。 以下の構造で、名前が束縛 ... )と呼ばれます。 名前が全く見付からなかったときは、 NameError 例外が送出されます。 現在のスコープが関数のも ... calError 例外が送出されます。 UnboundLocalError は NameError の子クラスです。 ある名前がコードブロック内の ...
https://man.plustar.jp/python/reference/executionmodel.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 4416
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... サポート の追加。 ssl での サーバサイド SNI (Server Name Indication) サポート の追加。 ssl.SSLContext クラス ... ジュールは今や、ホスト名のマッチング ( ssl.match_hostname() ) と証明書失効リスト (CRLs=certification revocat ... c ¶ getparams() メソッドがプレインなタプルではなく namedtuple を返すようになりました。 (Contributed by Cla ... ctions ( lambda x : x + 1 ): ... print ( instr . opname ) LOAD_FAST LOAD_CONST BINARY_ADD RETURN_VALUE dis ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
Function オブジェクト — Python 3.6.5 ドキュメント 4386
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... テーション、クロージャは NULL に設定されます。 __qualname__ は関数名と同じ値に設定されます。 PyObject * PyFu ... nction_NewWithQualName ( PyObject *code , PyObject *globals , PyObject *q ... ualname ) ¶ Return value: New reference. PyFunction_New() ... に似ていますが、関数オブジェクトの __qualname__ 属性に値をセットすることができます。 qualname...
https://man.plustar.jp/python/c-api/function.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 4386
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... re screen; this is usually called stdscr after the name of the corresponding C variable. import curses std ... ta, 6:cyan, and 7:white. The curses module defines named constants for each of these colors: curses.COLOR_ ... nction keys return longer strings containing a key name such as KEY_UP or ^G . It's possible to not wait f ...
https://man.plustar.jp/python/howto/curses.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 4386
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ら継承しています。 class logging. FileHandler ( filename , mode='a' , encoding=None , delay=False ) ¶ FileH ... values, Path objects are also accepted for the filename argument. close ( ) ¶ ファイルを閉じます。 emit ( ... 。 class logging.handlers. WatchedFileHandler ( filename , mode='a' , encoding=None , delay=False ) ¶ Watch ... values, Path objects are also accepted for the filename argument. reopenIfNeeded ( ) ¶ Checks to see if th ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 4386
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... with parameters on a remote server (the server is named by a URI) and get back structured data. This modu ... トを返します。 ServerProxy.system. methodSignature ( name ) ¶ XML-RPCサーバで実装されているメソッドの名前を指 ... 外の値となります。 ServerProxy.system. methodHelp ( name ) ¶ XML-RPCサーバで実装されているメソッドの名前を指 ... . 補助関数 ¶ xmlrpc.client. dumps ( params , methodname=None , methodresponse=None , encoding=None , allow ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
7. 入力と出力 — Python 3.6.5 ドキュメント 4386
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ' : 4127 , 'Jack' : 4098 , 'Dcab' : 7678 } >>> for name , phone in table . items (): ... print ( ' {0:10} ... ==> {1:10d} ' . format ( name , phone )) ... Jack ==> 4098 Dcab ==> 7678 Sjoerd ... open() は file object を返します。大抵、 open(filename, mode) のように二つの引数を伴って呼び出されます。 ...
https://man.plustar.jp/python/tutorial/inputoutput.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 4386
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 後、元の順序で書きなおすことができます。 collections.namedtuple() の _asdict() メソッドは、タプルの順序と同じ ... on = 'store' , dest = 'inputs' , help = 'input filenames (default is stdin)' ) args = parser . parse_args ... example . positional arguments : inputs input filenames ( default is stdin ) optional arguments : - h , - ... s' : { 'standard' : { 'format' : ( ' %(asctime)s %(name)-15s ' ' %(levelname)-8s %(message)s ' )}}, 'handl ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
索引 — Python 3.6.5 ドキュメント 4344
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » 索引 – 記号 ! (pdb command) != 演 ... mainfn> zipapp コマンドラインオプション -m <module-name> コマンドラインオプション -m, --memo pickletools コ ... assignment /= augmented assignment 2to3 : package namespace portion < 演算子 << 演算子 <<= augmented assi ...
https://man.plustar.jp/python/genindex-%E8%A8%98%E5%8F%B7.html - [similar]
18.5.4. Transports and protocols (callback based API) — Python 3.6.5 ドキュメン... 4344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 返します。 バージョン 3.5.1 で追加. get_extra_info ( name , default=None ) ¶ オプションのトランスポート情報を ... 返します。 name は取得したトランスポート固有の情報を表す文字列で、 ... ネル固有の情報を渡すことができます。 ソケット: 'peername' : ソケットが接続されているリモートアドレスで、 so ... cket.socket.getpeername() の結果になります (エラーのときは None ) 'socket' ...
https://man.plustar.jp/python/library/asyncio-protocol.html - [similar]