Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 44 for setup (0.067 sec.)
26.5. unittest.mock --- モックオブジェクトライブラリ — Python 3.6.5 ドキュメン... 6700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... これを使うと、 with 文やデコレータをネストさせずに、 setUp メソッドで複数のパッチをシンプルに適用させることが ... ock この方式の典型的なユースケースは、 TestCase の setUp メソッドで複数のパッチを行うことです: >>> class My ... Test ( TestCase ): ... def setUp ( self ): ... self . patcher1 = patch ( 'package.m ... メソッドを呼び出してパッチが解除する必要があります。 setUp の中で例外が発生した場合 tearDown が呼び出されない ...
https://man.plustar.jp/python/library/unittest.mock.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 6623
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... { const char * command ; int sts ; if ( ! PyArg_ParseTuple ( args , "s" , & command )) return NULL ; sts = ... 値に変換せねばなりません。Python API の関数 PyArg_ParseTuple() は引数の型をチェックし、C の値に変換します。 P ... yArg_ParseTuple() はテンプレート文字列を使って、引数オブジェクト ... ます。これについては後で詳しく説明します。 PyArg_ParseTuple() は、全ての引数が正しい型を持っていて、アドレス ...
https://man.plustar.jp/python/extending/extending.html - [similar]
索引 — Python 3.6.5 ドキュメント 6623
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » 索引 – 記号 ! (pdb command) != 演 ... ラインオプション -s コマンドラインオプション -s S, --setup=S timeit コマンドラインオプション -s, --start-dire ...
https://man.plustar.jp/python/genindex-%E8%A8%98%E5%8F%B7.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 6623
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ss MyTestCase1 ( unittest . TestCase ): # Only use setUp() and tearDown() if necessary def setUp ( self ): ...
https://man.plustar.jp/python/library/test.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 6623
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... ュールは次のように実行可能です: python -mtimeit -s 'setup here' 'benchmarked code here' python -mtimeit -h # ... ¶ user base directory を設定します。これは python setup.py install --user 時に user site-packages director ... mode and malloc_debug in debug mode. See the PyMem_SetupDebugHooks() function for debug hooks on Python mem ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 6593
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... class, used to describe C/C++ extension modules in setup scripts distutils.fancy_getopt Additional getopt f ...
https://man.plustar.jp/python/py-modindex.html - [similar]
4. Macintosh で Python を使う — Python 3.6.5 ドキュメント 6593
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... ードを使ってインストールすることができます ( python setup.py install )。 多くのパッケージは setuptools 拡張や ...
https://man.plustar.jp/python/using/mac.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 6593
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... いくつかの単純な依存性解決サポートが追加されました。 setup() 関数に requires , provides , obsoletes キーワード ... 要パッケージをダウンロード出来ます: VERSION = '1.0' setup ( name = 'PyPackage' , version = VERSION , require ... でなければなりません。それさえ出来ていれば、 python setup.py upload がパッケージを PyPI アーカイブに追加して ... 変数の Py_ssize_t への変更が必要でしょう。 PyArg_ParseTuple() 関数と Py_BuildValue() 関数は新しい変換コード ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 6546
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ill determine the terminal type, send any required setup codes to the terminal, and create various internal ...
https://man.plustar.jp/python/howto/curses.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 6546
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... logger 'root' : { 'handlers' : [ 'syslog' ] }, } # Set up configuration logging . config . dictConfig ( con ... 585 .) Distutils sdist コマンドが、 MANIFEST.in や setup.py ファイルが変更されていなくても、ユーザーが作成し ... ウンフィクスチャがサポートされました。モジュールは、 setUpModule() および tearDownModule() 関数を含むことがで ... きます。クラスは setUpClass() および tearDownClass() メソッドを含むことが ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
PREV 1 2 3 4 5 NEXT