Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 331 for OF (0.061 sec.)
What's New in Python 2.5 — Python 3.6.5 ドキュメント 5150
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... f log ( message , subsystem ): "Write the contents of 'message' to the specified subsystem." print ' %s ... に反映しています。---) PEP 314: Metadata for Python Software Packages v1.1 ¶ Distutils にいくつかの単純な依 ... 実装されました。 参考 PEP 314 - Metadata for Python Software Packages v1.1 PEP 提案と著 A.M. Kuchling、 Ri ... threading . Lock () with lock : # Critical section of code ... ブロックが実行される前にロックが獲得されて ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 5123
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... バージョン 3.3 で変更: LoadError was made a subclass of OSError instead of IOError . 以下のクラスが提供され ... Set-Cookie header with a version cookie-attribute of 1) are treated according to the RFC 2965 rules. Ho ... wever, if RFC 2965 handling is turned off or rfc2109_as_netscape is True , RFC 2109 cookies ... Netscape cookies, by setting the version attribute of the Cookie instance to 0. DefaultCookiePolicy also ...
https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
3. setup 設定ファイル (setup configuration file) を書く — Python 3.6.5 ドキュメ... 5095
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ドラインオプションで上書きできます The basic syntax of the configuration file is simple: [command] option ... 行にわたって記述できます。 You can find out the list of options supported by a particular command with the ... your pure Python modules --include-dirs (-I) list of directories to search for header files --define (- ... C preprocessor macros to undefine --swig-opts list of SWIG command line options [...] Note that an optio ...
https://man.plustar.jp/python/distutils/configfile.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 5095
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nested child context e = c . new_child () # Child of c, independent from d e . maps [ 0 ] # Current con ... s nonlocals d [ 'x' ] # Get first key in the chain of contexts d [ 'x' ] = 1 # Set value in current cont ... in d # Check all nested values len ( d ) # Number of nested values d . items () # All nested items dict ... 作れます: class DeepChainMap ( ChainMap ): 'Variant of ChainMap that allows direct updates to inner scope ...
https://man.plustar.jp/python/library/collections.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 5068
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ng XML-RPC client code; it handles all the details of translating between conformable Python objects and ... Resource Indicator), and will normally be the URL of the server. The optional second argument is a tran ... ging flag. The following parameters govern the use of the returned proxy instance. If allow_none is true ... ion' header, and sent to the remote server as part of the connection process when invoking an XML-RPC me ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
Download — Python 3.6.5 ドキュメント 5040
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Download Python 3.6.5 Documentati ... hive containing all the documents for this version of Python in one of various formats, follow one of li ... this table. The numbers in the table are the size of the download files in megabytes. Format Packed as ... » 3.6.5 ドキュメント » © 著作権 2001-2022, Python Software Foundation. Python Software Foundation は非営 ...
https://man.plustar.jp/python/download.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 5040
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... ndler ( ch ) logger . info ( 'creating an instance of auxiliary_module.Auxiliary' ) a = auxiliary_module ... Auxiliary () logger . info ( 'created an instance of auxiliary_module.Auxiliary' ) logger . info ( 'cal ... ry' ) self . logger . info ( 'creating an instance of Auxiliary' ) def do_something ( self ): self . log ... 3 - spam_application - INFO - creating an instance of auxiliary_module.Auxiliary 2005-03-23 23:47:11,665 ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 5040
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... dIOBase input stream, ready to read from the start of the optional input data. wfile ¶ Contains the outp ... ます。 responses ¶ This attribute contains a mapping of error code integers to two-element tuples containi ... as an optional, short, human readable description of the error. The explain argument can be used to pro ... format attribute and emitted, after a complete set of headers, as the response body. The responses attri ...
https://man.plustar.jp/python/library/http.server.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 5013
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... g a Future . This is intentional to have a freedom of tweaking the implementation of these functions in ... e() method when it gets a coroutine object instead of a task. The diagram shows the control flow, it doe ... n_until_complete() method waits for the completion of the future. 注釈 The run_until_complete() method u ... lds from a future, the task suspends the execution of the wrapped coroutine and waits for the completion ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 4986
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... same interface as the io.IOBase.readline() method of file objects. Each call to the function should ret ... urn one line of input as bytes. このジェネレータは次の5要素のタプル ... トを追加。 tokenize() determines the source encoding of the file by looking for a UTF-8 BOM or encoding co ... kenize() . tokenize() needs to detect the encoding of source files it tokenizes. The function it uses to ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT