Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 125 for read (0.089 sec.)
memoryview オブジェクト — Python 3.6.5 ドキュメント 5774
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... moryview オブジェクトを作成します。 flags は PyBUF_READ か PyBUF_WRITE のどちらかになります。 バージョン 3 ...
https://man.plustar.jp/python/c-api/memoryview.html - [similar]
19.7. binhex --- binhex4 形式ファイルのエンコードおよびデコード — Python 3.6.5 ... 5774
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... input をデコードします。 input はファイル名でも、 read() および close() メソッドをサポートするようなファイ ...
https://man.plustar.jp/python/library/binhex.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 5774
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... dow. getstr ( y , x ) window. getstr ( y , x , n ) Read a bytes object from the user, with primitive line ... . timeout ( delay ) ¶ Set blocking or non-blocking read behavior for the window. If delay is negative, blo ... cking read is used (which will wait indefinitely for input). ... If delay is zero, then non-blocking read is used, and getch() will return -1 if no input is ...
https://man.plustar.jp/python/library/curses.html - [similar]
6.8. rlcompleter --- GNU readline向け補完関数 — Python 3.6.5 ドキュメント 5774
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 6. テキスト処理サービス » 6.8. rlcompleter --- GNU readline向け補完関数 ¶ ソースコード: Lib/rlcompleter.py ... モジュールではPythonの識別子やキーワードを定義した readline モジュール向けの補完関数を定義しています。 この ... モジュールが Unixプラットフォームでimportされ、 readline が利用できるときには、 Completer クラスのインス ... タンスが自動的に作成され、 complete() メソッドが readline 補完に設定されます。 以下はプログラム例です: > ...
https://man.plustar.jp/python/library/rlcompleter.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 5774
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 拠のバリデーションツールを提供します。 https://wsgi.readthedocs.org/ に、WSGIに関するさらなる情報と、チュー ... ksize パラメータがくり返し filelike オブジェクトの read() メソッドに渡されて受け渡すバイト文字列を取得しま ... す。 read() が空バイト文字列を返した場合、イテレーションは終 ... クラスで、これは wsgi.run_once を true、 wsgi.multithread を false、そして wsgi.multiprocess を true にセット ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... er the C functions provided by curses; if you're already familiar with curses programming in C, it's reall ... oing of keys to the screen, in order to be able to read keys and only display them under certain circumsta ... n a funny state on exception and you'll be able to read the exception's message and traceback. ウィンドウと ... ow become non-blocking. To signal that no input is ready, getch() returns curses.ERR (a value of -1) and g ...
https://man.plustar.jp/python/howto/curses.html - [similar]
29.8. atexit --- 終了ハンドラ — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、 unregister() は何もせず、何も通知しません。 参考 readline モジュール readline ヒストリファイルを読み書き ... counterfile" ) as infile : _count = int ( infile . read ()) except FileNotFoundError : _count = 0 def incr ...
https://man.plustar.jp/python/library/atexit.html - [similar]
30.2. codeop --- Pythonコードをコンパイルする — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ールは、 code モジュールで行われているようなPythonの read-eval-printループをエミュレートするユーティリティを ...
https://man.plustar.jp/python/library/codeop.html - [similar]
13.4. lzma --- LZMA アルゴリズムを使用した圧縮 — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... がサポートが追加されました。 バージョン 3.5 で変更: read() メソッドが None を引数として受け取るようになりま ... zma . open ( "file.xz" ) as f : file_content = f . read () 圧縮ファイルの作成: import lzma data = b "Inser ...
https://man.plustar.jp/python/library/lzma.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 5700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nsfer Protocol. It can be used to implement a news reader or poster, or automated news processors. It is c ... TP ( host , port=119 , user=None , password=None , readermode=None , usenetrc=False [ , timeout ] ) ¶ Retu ... icate the user to the server. If the optional flag readermode is true, then a mode reader command is sent ... before authentication is performed. Reader mode is sometimes necessary if you are connectin ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT