本文整理汇总了Python中morepath.traject.parse_path函数的典型用法代码示例。如果您正苦于以下问题:Python parse_path函数的具体用法?Python parse_path怎么用?Python parse_path使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了parse_path函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_parse_path_end_slash
def test_parse_path_end_slash():
assert parse_path('a/b/c/') == ['c', 'b', 'a']
示例2: test_parse_path_multi_slash
def test_parse_path_multi_slash():
assert parse_path(u'/a/b/c') == parse_path(u'/a//b/c')
assert parse_path(u'/a/b/c') == parse_path(u'/a///b/c')
示例3: test_parse_path_slash
def test_parse_path_slash():
assert parse_path(u'/') == []
示例4: test_parse_path_no_slash
def test_parse_path_no_slash():
assert parse_path('a/b/c') == ['c', 'b', 'a']
示例5: test_parse_path
def test_parse_path():
assert parse_path(u'/a/b/c') == ['c', 'b', 'a']
示例6: test_parse_path_empty
def test_parse_path_empty():
assert parse_path(u'') == []
示例7: test_parse_path_dots_start
def test_parse_path_dots_start():
assert parse_path(u'/../a/b') == parse_path(u'/a/b')
示例8: test_parse_path_dots
def test_parse_path_dots():
assert parse_path(u'/a/b/../c') == parse_path(u'/a/c')
示例9: test_parse_path
def test_parse_path():
assert parse_path(u'/a/b/c') == [u'a', u'b', u'c']
示例10: test_parse_path_single_dots
def test_parse_path_single_dots():
assert parse_path(u'/a/./b') == parse_path(u'/a/b')
assert parse_path(u'./a/b') == parse_path(u'/a/b')