Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 138 for 推奨 (0.014 sec.)
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 6376
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... てください。 注釈 pyvenv スクリプトは Python 3.6 で非推奨となり、代わりに python3 -m venv を使い、仮想環境を動 ... る場合は、それが再利用されます。 バージョン 3.6 で非推奨: Python 3.3 と 3.4 では、仮想環境の作成に推奨してい ... たツールは pyvenv でしたが、 Python 3.6では非推奨です 。 バージョン 3.5 で変更: 仮想環境の作成には、 ...
https://man.plustar.jp/python/library/venv.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 6376
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... shell style filename pattern matching. formatter 非推奨: Generic output formatter and device interface. fp ... of image contained in a file or byte stream. imp 非推奨: Access the implementation of the import statement ... orresponding to the standard operators. optparse 非推奨: Command-line option parsing library. os Miscellan ...
https://man.plustar.jp/python/py-modindex.html - [similar]
29.7. abc --- 抽象基底クラス — Python 3.6.5 ドキュメント 6268
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... method ¶ バージョン 3.2 で追加. バージョン 3.3 で非推奨: classmethod を abstractmethod() と一緒に使えるよう ... method ¶ バージョン 3.2 で追加. バージョン 3.3 で非推奨: staticmethod を abstractmethod() と一緒に使えるよ ... : ... @ abc. abstractproperty ¶ バージョン 3.3 で非推奨: property 、 property.getter() 、 property.setter( ...
https://man.plustar.jp/python/library/abc.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 6268
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ートする必要がなければ async def タイプのコルーチンが推奨されています。 必須というわけではありませんが、ジェネ ... r_future , * , loop=None ) ¶ ensure_future() への非推奨なエイリアスです。 バージョン 3.4.4 で非推奨. asynci ... できません。 完全にキャンセル処理を無視させたい場合 (推奨はしません) は、以下のように shield() と try/except ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 6268
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ールは 2.4 で既にビルトインで置き換えられ、2.6 では非推奨となり、3.0 では削除されています。ので、集合型につい ... .4 でビルトイン版が追加され、2.6 でモジュール版が非推奨となった、という流れです。---) PEP 255: 単純なジェネ ... hon 2.2. 新たなモジュール、改良されたモジュール、非推奨のモジュール ¶ いつものように、Python の標準ライブラ ... ュメントされたこともない linuxaudiodev モジュールは非推奨となり、新しいバージョンが ossaudiodev として追加され ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 6161
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 標準ライブラリー外でこのパッケージを使用することは推奨されません。 test パッケージには、Python 用の全ての回 ... てテストを書く場合、幾つかのガイドラインに従うことが推奨されます。 1つは、テストモジュールの名前を、 test_ で ... テスト(対象のコードの詳細を元にテストを書くこと)を推奨します。ブラックボックス・テスト(公開されるインタフ ... 止予定で、 unittest.TestCase の assertXXX メソッドが推奨されます。 exception test.support. ResourceDenied ¶ ...
https://man.plustar.jp/python/library/test.html - [similar]
Python モジュールの配布 — Python 3.6.5 ドキュメント 6041
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... 今では distutils よりも定期的に更新される代替品として推奨されていて、広範囲の Python バージョンに渡るより新し ... ールは含まれていません。 現在のところのビルド・配布の推奨ツールは pip モジュールをコマンドラインから呼び出すこ ...
https://man.plustar.jp/python/distributing/index.html - [similar]
18.7. asynchat --- 非同期ソケットコマンド/レスポンスハンドラ — Python 3.6.5 ド... 6041
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ¶ ソースコード: Lib/asynchat.py バージョン 3.6 で非推奨: 代わりに asyncio を使ってください。 注釈 このモジ ... 存在します。新しいコードでは asyncio を利用することを推奨します。 asynchat を使うと、 asyncore を基盤とした非 ...
https://man.plustar.jp/python/library/asynchat.html - [similar]
Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 5933
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... 換える必要があります。 CObject は 3.1 および 2.7 で非推奨となり、Python 3.2 では完全に削除されたからです。 2. ... Python 3.0 はサポートが終了しているため現場利用には推奨されません。) そうした問題は、下に例示する capsuleth ...
https://man.plustar.jp/python/howto/cporting.html - [similar]
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 5933
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ecated alias of decodebytes() . バージョン 3.1 で非推奨. base64. encode ( input , output ) ¶ Encode the co ... ecated alias of encodebytes() . バージョン 3.1 で非推奨. モジュールの使用例: >>> import base64 >>> encoded ...
https://man.plustar.jp/python/library/base64.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT