Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 44 for setup (0.067 sec.)
What's New in Python 2.3 — Python 3.6.5 ドキュメント 6977
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... the new Distutils register command. Running python setup.py register will collect the metadata describing a ... カタログ作成をもう少し便利にするために、Distutils の setup() 関数に新たにオプショナルな classifiers キーワード ... アの分類を助けるために与えることが出来ます。 以下は setup.py に分類指定子 (classifier) を記述する例です。 Di ... cation framework" , # ... } if ( hasattr ( core , 'setup_keywords' ) and 'classifiers' in core . setup_keyw ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 6931
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... すれば、こうした挙動を実現できます: import logging # set up logging to file - see previous section for more d ... OG_FILENAME = 'logging_rotatingfile_example.out' # Set up a specific logger with our desired output level m ... start () if os . name == 'posix' : # On POSIX, the setup logger will have been configured in the # parent p ... fig call. # On Windows, since fork isn't used, the setup logger won't # exist in the child, so it would be ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
What's New in Python 2.1 — Python 3.6.5 ドキュメント 6900
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... って、様々な追加モジュールを有効にするために Modules/Setup ファイルを編集しなければなりませんでした; デフォル ... されています。 モジュールを有効化するために Modules/Setup を編集する必要性の代わりに、Python ソースツリーのト ... ップレベルディレクトリにある setup.py スクリプトがビルド時に実行され、システムのモジュ ... 来るのかを検出しようと試みます。モジュールが Modules/Setup 内でそう構成されていれば、 setup.py スクリプトはそ ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 6854
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 別できることを保証するためのものです。 wsgiref.util. setup_testing_defaults ( environ ) ¶ environ をテスト用に ... ータは偽物なのです! 使用例: from wsgiref.util import setup_testing_defaults from wsgiref.simple_server import ... he # environment dictionary after being updated by setup_testing_defaults def simple_app ( environ , start_ ... response ): setup_testing_defaults ( environ ) status = '200 OK' hea ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 6777
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e ( *paths , module_relative=True , package=None , setUp=None , tearDown=None , globs=None , optionflags=0 ... kage を指定するとエラーになります。 オプション引数 setUp には、テストスイートのセットアップに使う関数を指定 ... は、各ファイルのテストを実行する前に呼び出されます。 setUp 関数は DocTest オブジェクトに引き渡されます。 setU ... globs=None , extraglobs=None , test_finder=None , setUp=None , tearDown=None , checker=None ) ¶ doctest の ...
https://man.plustar.jp/python/library/doctest.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 6777
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tance of the subclass is created for each request. setup ( ) ¶ handle() メソッドより前に呼び出され、何らかの ... アップ処理を行います。標準の実装では何も行いません。 setup() メソッドが例外を送出した場合、このメソッドは呼び ... ¶ These BaseRequestHandler subclasses override the setup() and finish() methods, and provide self.rfile and ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
12. 仮想環境とパッケージ — Python 3.6.5 ドキュメント 6777
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 6kB ) Installing collected packages: novas Running setup.py install for novas Successfully installed novas- ... umpy ( 1 .9.2 ) pip ( 7 .0.3 ) requests ( 2 .7.0 ) setuptools ( 16 .0 ) pip freeze はインストールされたパッ ... collected packages: novas, numpy, requests Running setup.py install for novas Successfully installed novas- ...
https://man.plustar.jp/python/tutorial/venv.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 6746
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... minput() Screen 独自のメソッド bye() exitonclick() setup() title() 24.1.3. RawTurtle/Turtle のメソッドと対応 ... ライアントスクリプトから見てアクティブです。 turtle. setup ( width=_CFG["width"], height=_CFG["height"], star ... 下端から、 None ならば垂直方向に真ん中 >>> screen . setup ( width = 200 , height = 200 , startx = 0 , starty ... 0x200 pixels, in upper left of screen >>> screen . setup ( width = .75 , height = 0.5 , startx = None , sta ...
https://man.plustar.jp/python/library/turtle.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 6746
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... p . These allow you to move the patching into your setUp and tearDown methods. >>> class MyTest ( TestCase ... ): ... def setUp ( self ): ... self . patcher = patch ( 'mymodule.f ... ht think, because if an exception is raised in the setUp then tearDown is not called. unittest.TestCase.add ... his easier: >>> class MyTest ( TestCase ): ... def setUp ( self ): ... patcher = patch ( 'mymodule.foo' ) . ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
28.1. distutils --- Python モジュールの構築とインストール — Python 3.6.5 ドキュ... 6700
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... しているクロスバージョンツールを使うでしょう。特に、 setuptools は distutils の改良された代替品で、以下を提供 ... インポートしていても、推奨される pip インストーラは setuptools で全 setup.py スクリプトを実行します。詳細は ... ール , ドキュメント , ユーザ , ソフトウェア , 宣言 , setuptools 前のトピックへ 28. ソフトウェア・パッケージと ...
https://man.plustar.jp/python/library/distutils.html - [similar]
PREV 1 2 3 4 5 NEXT