Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 15 for suite (0.011 sec.)
- 10. 完全な文法仕様 — Python 3.6.5 ドキュメント 13950
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
funcdef : 'def' NAME parameters [ '->' test ] ':' suite parameters : '(' [ typedargslist ] ')' typedargsli...
f | with_stmt | for_stmt ) if_stmt : 'if' test ':' suite ( 'elif' test ':' suite ) * [ 'else' ':' suite ] w...
hile_stmt : 'while' test ':' suite [ 'else' ':' suite ] for_stmt : 'for' exprlist 'in...
' testlist ':' suite [ 'else' ':' suite ] try_stmt : ( 'try' ':' suite...
- https://man.plustar.jp/python/reference/grammar.html - [similar]
- 8. 複合文 (compound statement) — Python 3.6.5 ドキュメント 11564
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ
...
(clause)' からなります。節は、ヘッダと 'スイート (suite)' からなります。一つの複合文を成す各節のヘッダは、...
| async_with_stmt | async_for_stmt | async_funcdef suite ::= stmt_list NEWLINE | NEWLINE INDENT statement +...
るために使われます: if_stmt ::= "if" expression ":" suite ( "elif" expression ":" suite )* ["else" ":" suite...
に使われます: while_stmt ::= "while" expression ":" suite ["else" ":" suite ] while 文は式を繰り返し真偽評価...
- https://man.plustar.jp/python/reference/compound_stmts.html - [similar]
- 32.1. parser --- Python 解析木にアクセスする — Python 3.6.5 ドキュメント 9805
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
の中に格納される解析木は、下で説明する expr() または suite() 関数によって作られるときに内部パーサから実際に出...
。そうでなければ、適切な例外を発生させます。 parser. suite ( source ) ¶ まるで compile(source, 'file.py', 'ex...
ec') への入力であるかのように、 suite() 関数はパラメータ source を構文解析します。解析が...
ST オブジェクトに対する問い合わせ ¶ ST が式または suite として作成されたかどうかをアプリケーションが決定で...
- https://man.plustar.jp/python/library/parser.html - [similar]
- 26.4. unittest --- ユニットテストフレームワーク — Python 3.6.5 ドキュメント 8829
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
として利用することができます。 テストスイート (test suite) テストスイート ( test suite ) はテストケースとテス...
. unittest provides a mechanism for this: the test suite , represented by unittest 's TestSuite class. In m...
スタマイズしたい場合、自分ですることができます: def suite (): suite = unittest . TestSuite () suite . addTes...
t ( WidgetTestCase ( 'test_default_widget_size' )) suite . addTest ( WidgetTestCase ( 'test_widget_resize'...
- https://man.plustar.jp/python/library/unittest.html - [similar]
- What's New In Python 3.6 — Python 3.6.5 ドキュメント 8481
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
File "unittest/case.py" , line 648 File "unittest/suite.py" , line 122 File "unittest/suite.py" , line 84...
est/case.py" , line 648 in __call__ File "unittest/suite.py" , line 122 in run File "unittest/suite.py" , l...
ine 84 in __call__ File "unittest/suite.py" , line 122 in run File "unittest/suite.py" , l...
0 .) 3DES has been removed from the default cipher suites and ChaCha20 Poly1305 cipher suites have been add...
- https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
- Pythonモジュール索引 — Python 3.6.5 ドキュメント 8133
- ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b |
...
st Regression tests package containing the testing suite for Python. test.support Support for Python's regr...
ession test suite. textwrap Text wrapping and filling threading Thre...
- https://man.plustar.jp/python/py-modindex.html - [similar]
- 29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 7854
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
e_pack , service_pack_minor , service_pack_major , suite_mask , product_type and platform_version . service...
変更され、 service_pack_minor , service_pack_major , suite_mask , および product_type が追加されました。 バー...
- https://man.plustar.jp/python/library/sys.html - [similar]
- 3. Windows で Python を使う — Python 3.6.5 ドキュメント 7854
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ
...
l=1 SimpleInstallDescription="Just for me, no test suite." (ランチャのインストールを省略するとファイルの関連...
"SimpleInstallDescription" > Just for me, no test suite </Option> </Options> 3.1.5. ダウンロード不要なイン...
- https://man.plustar.jp/python/using/windows.html - [similar]
- 32.2. ast --- 抽象構文木 — Python 3.6.5 ドキュメント 7784
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
n actual node but useful in Jython's typesystem. | Suite(stmt* body) stmt = FunctionDef(identifier name, ar...
- https://man.plustar.jp/python/library/ast.html - [similar]
- What's New in Python 2.7 — Python 3.6.5 ドキュメント 7784
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
扱われます。つまり: with A () as a , B () as b : ... suite of statements ... は、以下と同じです with A () as...
a : with B () as b : ... suite of statements ... contextlib.nested() 関数は非常に...
e_pack , service_pack_major , service_pack_minor , suite_mask , および product_type を持つ名前付きタプルを返...
要求します。 loadTestsFromName() は、 TestLoader の suiteClass 属性を適切に受け入れます。(Fixed by Mark Rodd...
- https://man.plustar.jp/python/whatsnew/2.7.html - [similar]