Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 140 for Use (0.058 sec.)
DTrace と SystemTap で CPython を測定する — Python 3.6.5 ドキュメント 6339
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » DTra ... hine code instructions to enable the tracing hooks used by a SystemTap script. 静的 DTrace プローブ ¶ The ... following example DTrace script can be used to show the call/return hierarchy of a Python scr ... :28 静的 SystemTap マーカー ¶ The low-level way to use the SystemTap integration is to use the static mar ... ess("python").mark("function__entry") { filename = user_string($arg1); funcname = user_string($arg2); lin ...
https://man.plustar.jp/python/howto/instrumentation.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 6339
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... uestHandlerClass , bind_and_activate=True ) ¶ This uses the Internet TCP protocol, which provides for con ... uestHandlerClass , bind_and_activate=True ) ¶ This uses datagrams, which are discrete packets of informat ... bind_and_activate=True ) ¶ These more infrequently used classes are similar to the TCP and UDP classes, b ... ut use Unix domain sockets; they're not available on non- ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 6256
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ding C extensions, it is recommended in real-world use cases to use the newer and better-maintained setup ... document and can be found in the Python Packaging User's Guide . 2.2. 基本のサンプルにデータとメソッドを ... ustom_name ( CustomObject * self , PyObject * Py_UNUSED ( ignored )) { if ( self -> first == NULL ) { PyE ... at the object's type might not be CustomType , because the object may be an instance of a subclass. 注釈 ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 6256
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... duce the right output. curses doesn't provide many user-interface concepts such as buttons, checkboxes, o ... r dialogs; if you need such features, consider a user interface library such as Urwid . curses ライブラ ... ole module written by Fredrik Lundh, which doesn't use the same API as curses but provides cursor-address ... able text output and full support for mouse and keyboard input. Python の curses module ¶ The ...
https://man.plustar.jp/python/howto/curses.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 6256
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... or Message ) policy Compat32 . If you are going to use another policy, you should be using the EmailMessa ... headers are supported but special methods must be used to access them. The Message pseudo-dictionary is ... ecified (it must be an instance of a policy class) use the rules it specifies to update and serialize the ... presentation of the message. If policy is not set, use the compat32 policy, which maintains backward comp ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
23.2. locale --- 国際化サービス — Python 3.6.5 ドキュメント 6184
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... あるいは小数点コンマ、等) を取得します。 locale. THOUSEP ¶ 1000 単位桁区切り (3 桁ごとのグループ化) の区切 ... loc = locale . getlocale () # get current locale # use German locale; name might vary with platform >>> l ... >>> locale . setlocale ( locale . LC_ALL , '' ) # use user's preferred locale >>> locale . setlocale ( l ... ocale . LC_ALL , 'C' ) # use default (C) locale >>> locale . setlocale ( locale ...
https://man.plustar.jp/python/library/locale.html - [similar]
6. Python Package Index (PyPI) — Python 3.6.5 ドキュメント 6101
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... to know who you are , so please choose either : 1. use your existing login , 2. register as a new user , ... 保存したくない場合はこの方法を利用できます。 You can use the --sign option to tell upload to sign each uplo ... he system PATH . You can also specify which key to use for signing using the --identity=name option. uplo ... n $HOME/.pypirc . If this file exists, the command uses the username, password, and repository URL config ...
https://man.plustar.jp/python/distutils/packageindex.html - [similar]
urllib パッケージを使ってインターネット上のリソースを取得するには — Python 3.6.... 6101
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » urll ... り、動作しないかもしれません。ブラウザは自身の情報を User-Agent ヘッダ [3] を通して扱っています。リクエスト ... = 'http://www.someserver.com/cgi-bin/register.cgi' user_agent = 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) ... orthampton' , 'language' : 'Python' } headers = { 'User-Agent' : user_agent } data = urllib . parse . url ... http.server.BaseHTTPRequestHandler.responses is a useful dictionary of response codes in that shows all ...
https://man.plustar.jp/python/howto/urllib2.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 6101
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 状態に戻します。 curses. erasechar ( ) ¶ Return the user's current erase character as a one-byte bytes obj ... elf. curses. filter ( ) ¶ The filter() routine, if used, must be called before initscr() is called. The e ... rrent line, and so are screen updates. This may be used for enabling character-at-a-time line editing wit ... ないすべての先行入力文字を破棄します。 curses. getmouse ( ) ¶ After getch() returns KEY_MOUSE to signal a ...
https://man.plustar.jp/python/library/curses.html - [similar]
14.5. plistlib --- Mac OS X .plist ファイルの生成と解析 — Python 3.6.5 ドキュメ... 6101
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 定義しています: plistlib. load ( fp , * , fmt=None , use_builtin_types=True , dict_type=dict ) ¶ plist ファ ... イル形式です FMT_BINARY : バイナリの plist 形式です use_builtin_types が真 (デフォルト) の場合、バイナリデ ... .4 で追加. plistlib. loads ( data , * , fmt=None , use_builtin_types=True , dict_type=dict ) ¶ バイナリオ ...
https://man.plustar.jp/python/library/plistlib.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT