本文整理汇总了Python中test_utils.check_dumps函数的典型用法代码示例。如果您正苦于以下问题:Python check_dumps函数的具体用法?Python check_dumps怎么用?Python check_dumps使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了check_dumps函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_global
def test_global():
check_dumps("global a")
示例2: test_atom_trailers_call_default
def test_atom_trailers_call_default():
check_dumps("caramba(s, b=2)")
示例3: test_dict_argument
def test_dict_argument():
check_dumps("caramba(** a)")
示例4: test_print
def test_print():
check_dumps("print pouet")
示例6: test_import_madness
def test_import_madness():
check_dumps("import a.B . c as saucisse")
示例7: test_from_import_special_notation
def test_from_import_special_notation():
check_dumps("from a import (b)")
check_dumps("from a import (b, c, d)")
示例8: test_comment_special_case
def test_comment_special_case():
check_dumps("d((s) # Padding\n)")
示例9: test_if_elif_else
def test_if_elif_else():
check_dumps("if a: \n pass\nelif b: pass\nelse : \n pouet")
示例10: test_yield_atom
def test_yield_atom():
check_dumps("a = ( yield b )")
示例11: test_repr
def test_repr():
check_dumps("` a `")
示例12: test_yield_atom_empty
def test_yield_atom_empty():
check_dumps("a = ( yield )")
示例13: test_ellipsis
def test_ellipsis():
check_dumps("a[ . . .]")
示例14: test_global_more
def test_global_more():
check_dumps("global a , b, d")
示例15: test_try_import_after_colon
def test_try_import_after_colon():
check_dumps("try: import stuff\nexcept: pass")