本文整理汇总了Python中iktomi.web.reverse.URL.get_readable方法的典型用法代码示例。如果您正苦于以下问题:Python URL.get_readable方法的具体用法?Python URL.get_readable怎么用?Python URL.get_readable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类iktomi.web.reverse.URL
的用法示例。
在下文中一共展示了URL.get_readable方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_quotted_path_to_constructor
# 需要导入模块: from iktomi.web.reverse import URL [as 别名]
# 或者: from iktomi.web.reverse.URL import get_readable [as 别名]
def test_quotted_path_to_constructor(self):
u = URL(u'/%D1%83/',
host=u'xn--80aswg.xn--p1ai',
query={'q': u'%D0%BF'},
fragment=u"%D1%8F")
# We shold not try to unquote the urlqouted values!
# Otherwise it is impossible to build a consistent interface
self.assertEqual(u, u'http://xn--80aswg.xn--p1ai/%25D1%2583/?q=%25D0%25BF#%25D1%258F')
self.assertEqual(u.get_readable(), u'http://сайт.рф/%25D1%2583/?q=%25D0%25BF#%25D1%258F')
示例2: test_no_quote
# 需要导入模块: from iktomi.web.reverse import URL [as 别名]
# 或者: from iktomi.web.reverse.URL import get_readable [as 别名]
def test_no_quote(self):
u = URL(u'/урл/', host=u'сайт.рф', query={'q': u'поиск'})
self.assertEqual(u.get_readable(), u'http://сайт.рф/урл/?q=поиск')