Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 274 for IN (0.032 sec.)
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 5267
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... れたすべてのファイルから行を読み込んでいくには、 fileinput モジュールを参照してください。一時ファイルや一時 ... エンコーディングを使用します ( sys.getfilesystemencoding() 参照)。 バージョン 3.1 で変更: 一部のシステムで ... ります。 Unix では、キーと値に sys.getfilesystemencoding() 、エラーハンドラーに 'surrogateescape' を使用し ... ¶ Encode path-like filename to the filesystem encoding with 'surrogateescape' error handler, or 'strict' ...
https://man.plustar.jp/python/library/os.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 5238
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... インスタンス変数に記憶されています。サブクラスでは __init__() メソッドを上書きしたり拡張したりする必要はあ ... ョンを切断すべきかどうかを指し示しています。 requestline ¶ HTTP リクエスト行の文字列表現を保持しています。 ... することを要求します。 rfile ¶ An io.BufferedIOBase input stream, ready to read from the start of the opt ... ional input data. wfile ¶ Contains the output stream for wr ...
https://man.plustar.jp/python/library/http.server.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 5219
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 度反時計回りに回ります。 Turtle star Turtle can draw intricate shapes using programs that repeat simple mo ... from turtle import * color ( 'red' , 'yellow' ) begin_fill () while True : forward ( 200 ) left ( 170 ) ... リミティブを提供します。グラフィックスの基礎として tkinter を使っているために、Tk をサポートした Python の ... ら走り回る画面を定義します。そのコンストラクタには tkinter.Canvas または ScrolledCanvas を渡す必要がありま ...
https://man.plustar.jp/python/library/turtle.html - [similar]
Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 5189
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 用データに対するチェックやアクセスを高速に行います: int PyUnicode_Check ( PyObject *o ) ¶ o が Unicode 文 ... ode 文字列型のサブタイプであるときに真を返します。 int PyUnicode_CheckExact ( PyObject *o ) ¶ o が Unico ... ode 文字列型のサブタイプでないときに真を返します。 int PyUnicode_READY ( PyObject *o ) ¶ 文字列オブジェク ... になっているかどうかのチェックはしません; PyUnicode_KIND() を使って正しいマクロを選んでください。 このオブ ...
https://man.plustar.jp/python/c-api/unicode.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 5189
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ib/asyncio/tasks.py Source code: Lib/asyncio/coroutines.py 18.5.3.1. コルーチン ¶ asyncio と一緒に使うコ ... が、ジェネレータベースのコルーチンは @asyncio.coroutine でデコレートすべきです。 @asyncio.coroutine でデコ ... 定義した関数 ( async def を使用するか @asyncio.coroutine でデコレートされた関数定義)。 曖昧さを避ける際は ... コルーチン関数 と呼びます ( iscoroutinefunction() は True を返します)。 コルーチン関数の呼 ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 5189
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のために doctest を使います。コードサンプルの中には Linux、 Windows、あるいは Mac OS X 上で異なる動作をする ... ます。 注意: いくつかのコードサンプルで ctypes の c_int 型を参照しています。 sizeof(long) == sizeof(int) ... では、この型は c_long のエイリアスです。そのため、 c_int 型を想定しているときに c_long が表示されたとしても ... するために、 ctypes は cdll をエクスポートします。 Windows では windll と oledll オブジェクトをエクスポー ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
9. クラス — Python 3.6.5 ドキュメント 5189
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... space) とは、名前からオブジェクトへの対応付け (mapping) です。ほとんどの名前空間は、現状では Python の辞 ... み出されたものでも対話的に読み出されたものでも、 __main__ という名前のモジュールの一部分であるとみなされる ... にはモジュール内に存在します。そのモジュールは builtins と呼ばれています。) 関数のローカルな名前空間は、関 ... ープは、ローカルな名前を持っています。 外側の(enclosing)関数のスコープは、近いほうから順に探され、ローカル ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
18.5.9. asyncio での開発 — Python 3.6.5 ドキュメント 5160
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 有効になります。 asyncio logger のトップレベルを logging.DEBUG に設定します。例えば、起動時に logging.basi ... cConfig(level=logging.DEBUG) を呼び出します。 warnings モジュールを構成 ... して、 ResourceWarning 警告が表示されるようにします。例えば、Python の - ... ループが 明示的に閉じられなかった 場合、 ResourceWarning 警告が出ます。 参考 AbstractEventLoop.set_debug() ...
https://man.plustar.jp/python/library/asyncio-dev.html - [similar]
19.10. uu --- uuencode形式のエンコードとデコード — Python 3.6.5 ドキュメント 5160
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 利用しないでください。呼び出し側でファイルを開いて(Windows では 'rb' か 'wb' のモードで)利用する方法が推奨 ... されます。 このコードは Lance Ellinghouse によって提供され、Jack Jansen によって更新さ ... ジュールでは以下の関数を定義しています: uu. encode ( in_file , out_file , name=None , mode=None ) ¶ in_fil ... ode を含んだヘッダがつきます。省略された場合には、 in_file から取得された名前か '-' という文字と、 0o666 ...
https://man.plustar.jp/python/library/uu.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 5131
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ッケージ » 19.1.9. email.message.Message : Representing an email message using the compat32 API ¶ The Mes ... that class, and with the default behavior of certain other methods being slightly different. We also do ... sage class, are not recommended unless you are dealing with legacy code. The philosophy and structure of ... ault (for Message ) policy Compat32 . If you are going to use another policy, you should be using the Em ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT