Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 71 - 80 of about 129 for call (0.107 sec.)
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 5701
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Lib/xmlrpc/client.py XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP(S) as a trans ... port. With it, a client can call methods with parameters on a remote server (the se ... ime , bytes and bytearray objects may be passed to calls. The obsolete use_datetime flag is similar to use ... ecial to XML such as < , > , and & will be automatically escaped. However, it's the caller's responsibilit ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 5701
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ccess an undefined variable Traceback (most recent call last): File "<stdin>" , line 1 , in <module> NameE ... word only has 6 characters Traceback (most recent call last): File "<stdin>" , line 1 , in <module> Index ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 5701
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ) >>> t . substitute ( d ) Traceback (most recent call last): ... KeyError : 'owner' >>> t . safe_substit ... ght away 0 >>> d [ 'primary' ] # entry was automatically removed Traceback (most recent call last): File " ... , in <module> d [ 'primary' ] # entry was automatically removed File "C:/python36/lib/weakref.py" , line ...
https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
What's New in Python 2.2 — Python 3.6.5 ドキュメント 5701
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... が出来ます: class D ( B , C ): def save ( self ): # Call superclass .save() super ( D , self ) . save () # ... st >>> obj . newattr = None Traceback (most recent call last): File "<stdin>" , line 1 , in ? AttributeErr ... . next () 3 >>> i . next () Traceback (most recent call last): File "<stdin>" , line 1 , in ? StopIteratio ... next () 2 >>> gen . next () Traceback (most recent call last): File "<stdin>" , line 1 , in ? File "<stdin ...
https://man.plustar.jp/python/whatsnew/2.2.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 5701
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... pass ... >>> c = Circle () Traceback (most recent call last): File "<stdin>" , line 1 , in <module> TypeE ... TP クラスの storbinary() と storlines() メソッドが callback パラメータを新たに受け取ります。これはデータが ... buted by John Lenton.) operator モジュールに methodcaller() 関数が追加されています。名前と省略可能な引数を ... lace('old', 'new') >>> replacer = operator . methodcaller ( 'replace' , 'old' , 'new' ) >>> replacer ( 'ol ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
Argparse チュートリアル — Python 3.6.5 ドキュメント 5641
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argp ... rrent directory by default). Sort entries alphabetically if none of -cftuvSUX nor --sort is specified. ... ... 結果です: $ python3 prog.py 4 Traceback (most recent call last): File "prog.py", line 5, in <module> print(a ... uals 16 $ python3 prog.py 4 Traceback (most recent call last): File "prog.py", line 11, in <module> if arg ...
https://man.plustar.jp/python/howto/argparse.html - [similar]
18.5.4. Transports and protocols (callback based API) — Python 3.6.5 ドキュメン... 5641
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... チンおよびタスク » 18.5.4. Transports and protocols (callback based API) ¶ Source code: Lib/asyncio/transpor ... s pause_writing() and resume_writing() methods are called. If specified, the low-water limit must be less ... r high nor low can be negative. pause_writing() is called when the buffer size becomes greater than or equ ... e. If writing has been paused, resume_writing() is called when the buffer size becomes less than or equal ...
https://man.plustar.jp/python/library/asyncio-protocol.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 5641
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ame in filenames ] # All opened files will automatically be closed at the end of # the with statement, eve ... インスタンスが暗黙的にガベージコレクトされたときには callback は呼び出され ません 。 このスタックモデルは、( ... れた状態に応じた引数が渡されます。 これは正しく exit callback の stack を巻き戻すための、比較的低レベルな AP ... るように、受け取ったオブジェクトをそのまま返します。 callback ( callback , *args , **kwds ) ¶ 任意の関数と引 ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
29.14. fpectl --- 浮動小数点例外の制御 — Python 3.6.5 ドキュメント 5641
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ath >>> math . exp ( 1000 ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> Float ...
https://man.plustar.jp/python/library/fpectl.html - [similar]
21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 5641
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... their own Cookie instances. Instead, if necessary, call make_cookies() on a CookieJar instance. 参考 urlli ... ます。 The response object (usually the result of a call to urllib.request.urlopen() , or similar) should s ...
https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT