Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 17 for wrap (0.030 sec.)
- 6.4. textwrap --- テキストの折り返しと詰め込み — Python 3.6.5 ドキュメント 14639
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
リ » 6. テキスト処理サービス » 6.4. textwrap --- テキストの折り返しと詰め込み ¶ ソースコード: L...
ib/textwrap.py textwrap モジュールは、実際の処理を行う TextWra...
つかの便利な関数を提供しています。1つか2つの文字列を wrap あるいは fill するだけの場合は便利関数で十分ですが...
、多くの処理を行う場合は効率のために TextWrapper のインスタンスを使うべきでしょう。 textwrap. wr...
- https://man.plustar.jp/python/library/textwrap.html - [similar]
- 18.2. ssl --- ソケットオブジェクトに対する TLS/SSL ラッパー — Python 3.6.5 ドキ... 11449
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
証明書の管理の助けとなるでしょう。それは SSLContext.wrap_socket() メソッドを通して SSL ソケットを作成するこ...
Python 3.2 からは、これよりもっと柔軟な SSLContext.wrap_socket() が使えます。 ssl. wrap_socket ( sock , ke...
対してのサーバサイド SSLラップは自動的に行われます。 wrap_socket() は SSLError を送出することがあります。 オ...
コルを利用します。 ca_certs が指定された場合、それは wrap_socket() の同名の引数と同じフォーマットで、ルート証...
- https://man.plustar.jp/python/library/ssl.html - [similar]
- 19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 8569
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
are longer than maxheaderlen , or if 0 , do not rewrap any headers. If manheaderlen is None (the default)...
, wrap headers and other message lines according to the p...
are longer than maxheaderlen , or if 0 , do not rewrap any headers. If manheaderlen is None (the default)...
, wrap headers and other message lines according to the p...
- https://man.plustar.jp/python/library/email.generator.html - [similar]
- 18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 8466
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ion is needed to be used in a callback-style code, wrap its result with ensure_future() . 18.5.3.1.1. 例:...
cuting a coroutine object in an event loop. If the wrapped coroutine yields from a future, the task suspen...
ds the execution of the wrapped coroutine and waits for the completion of the f...
ure. When the future is done, the execution of the wrapped coroutine restarts with the result or the excep...
- https://man.plustar.jp/python/library/asyncio-task.html - [similar]
- 29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 8259
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
asis (see PEP 411 for details.) sys. get_coroutine_wrapper ( ) ¶ Returns None , or a wrapper set by set_co...
routine_wrapper() . バージョン 3.5 で追加: See PEP 492 for more...
asis (see PEP 411 for details.) sys. set_coroutine_wrapper ( wrapper ) ¶ Allows intercepting creation of c...
asyncio.coroutine() will not be intercepted). The wrapper argument must be either: a callable that accept...
- https://man.plustar.jp/python/library/sys.html - [similar]
- 11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 8259
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア
...
n', 'red']], [['magenta', 'yellow'], 'blue']]] textwrap モジュールは、段落で構成された文章を、指定したスク...
ン幅にぴったり収まるように調整します: >>> import textwrap >>> doc = """The wrap() method is just like fill()...
f one big string with newlines to separate ... the wrapped lines.""" ... >>> print ( textwrap . fill ( doc...
, width = 40 )) The wrap() method is just like fill() except that it return...
- https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
- What's New in Python 2.3 — Python 3.6.5 ドキュメント 8173
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
(Contributed by Lars Gustäbel.) 新規モジュール textwrap には、テキストのパラグラフを含んだ文字列を折り返す...
ための関数群を含まれています。 wrap(text, width) 関数は文字列を入力に取り、指定した幅よ...
形して単一文字列で返します。(ご想像どおり fill() は wrap() の上に構築されています。例えば: >>> import textw...
a whit, we defy augury: ... more text ..." >>> textwrap . wrap ( paragraph , 60 ) ["Not a whit, we defy au...
- https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
- What's New In Python 3.2 — Python 3.6.5 ドキュメント 8069
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
pe 577479 , bpo-10586 , and bpo-10593 .) functools.wraps() デコレータが元の callable 関数を指し示す __wrap...
きます: >>> get_phone_number = get_phone_number . __wrapped__ # uncached function (By Nick Coghlan and Terr...
的 SSL データの容器として働きます。その中のメソッド wrap_socket() を使うと、 SSL コンテキストから SSL ソケッ...
。これはほかのプロトコルにも適切なものです。 The ssl.wrap_socket() constructor function now takes a ciphers...
- https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
- 33.1. formatter --- 汎用の出力書式化機構 — Python 3.6.5 ドキュメント 7966
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
に渡されたデータは出力デバイスで行末の折り返し (word-wrap) されるものと想定されています。出力デバイスでの要求...
- https://man.plustar.jp/python/library/formatter.html - [similar]
- Unicode HOWTO — Python 3.6.5 ドキュメント 7862
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Unic
...
ou have an input file f that's in Latin-1, you can wrap it with a StreamRecoder to return bytes encoded in...
- https://man.plustar.jp/python/howto/unicode.html - [similar]