當前位置: 首頁>>代碼示例>>Python>>正文


Python simplejson.decoder方法代碼示例

本文整理匯總了Python中simplejson.decoder方法的典型用法代碼示例。如果您正苦於以下問題:Python simplejson.decoder方法的具體用法?Python simplejson.decoder怎麽用?Python simplejson.decoder使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在simplejson的用法示例。


在下文中一共展示了simplejson.decoder方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: additional_tests

# 需要導入模塊: import simplejson [as 別名]
# 或者: from simplejson import decoder [as 別名]
def additional_tests(suite=None):
    import simplejson
    import simplejson.encoder
    import simplejson.decoder
    if suite is None:
        suite = unittest.TestSuite()
    try:
        import doctest
    except ImportError:
        if sys.version_info < (2, 7):
            # doctests in 2.6 depends on cStringIO
            return suite
        raise
    for mod in (simplejson, simplejson.encoder, simplejson.decoder):
        suite.addTest(doctest.DocTestSuite(mod))
    suite.addTest(doctest.DocFileSuite('../../index.rst'))
    return suite 
開發者ID:Tautulli,項目名稱:Tautulli,代碼行數:19,代碼來源:__init__.py

示例2: additional_tests

# 需要導入模塊: import simplejson [as 別名]
# 或者: from simplejson import decoder [as 別名]
def additional_tests(suite=None):
    import simplejson
    import simplejson.encoder
    import simplejson.decoder
    if suite is None:
        suite = unittest.TestSuite()
    for mod in (simplejson, simplejson.encoder, simplejson.decoder):
        suite.addTest(doctest.DocTestSuite(mod))
    suite.addTest(doctest.DocFileSuite('../../index.rst'))
    return suite 
開發者ID:gkudos,項目名稱:qgis-cartodb,代碼行數:12,代碼來源:__init__.py

示例3: test_py_scanstring

# 需要導入模塊: import simplejson [as 別名]
# 或者: from simplejson import decoder [as 別名]
def test_py_scanstring(self):
        self._test_scanstring(simplejson.decoder.py_scanstring) 
開發者ID:gkudos,項目名稱:qgis-cartodb,代碼行數:4,代碼來源:test_scanstring.py

示例4: test_c_scanstring

# 需要導入模塊: import simplejson [as 別名]
# 或者: from simplejson import decoder [as 別名]
def test_c_scanstring(self):
        if not simplejson.decoder.c_scanstring:
            return
        self._test_scanstring(simplejson.decoder.c_scanstring) 
開發者ID:gkudos,項目名稱:qgis-cartodb,代碼行數:6,代碼來源:test_scanstring.py

示例5: test_issue3623

# 需要導入模塊: import simplejson [as 別名]
# 或者: from simplejson import decoder [as 別名]
def test_issue3623(self):
        self.assertRaises(ValueError, json.decoder.scanstring, "xxx", 1,
                          "xxx")
        self.assertRaises(UnicodeDecodeError,
                          json.encoder.encode_basestring_ascii, b("xx\xff")) 
開發者ID:gkudos,項目名稱:qgis-cartodb,代碼行數:7,代碼來源:test_scanstring.py

示例6: test_overflow

# 需要導入模塊: import simplejson [as 別名]
# 或者: from simplejson import decoder [as 別名]
def test_overflow(self):
        # Python 2.5 does not have maxsize, Python 3 does not have maxint
        maxsize = getattr(sys, 'maxsize', getattr(sys, 'maxint', None))
        assert maxsize is not None
        self.assertRaises(OverflowError, json.decoder.scanstring, "xxx",
                          maxsize + 1) 
開發者ID:gkudos,項目名稱:qgis-cartodb,代碼行數:8,代碼來源:test_scanstring.py

示例7: test_c_scanstring

# 需要導入模塊: import simplejson [as 別名]
# 或者: from simplejson import decoder [as 別名]
def test_c_scanstring(self):
        if not simplejson.decoder.c_scanstring:
            return
        self._test_scanstring(simplejson.decoder.c_scanstring)

        self.assertTrue(isinstance(simplejson.decoder.c_scanstring('""', 0)[0], str)) 
開發者ID:Tautulli,項目名稱:Tautulli,代碼行數:8,代碼來源:test_scanstring.py


注:本文中的simplejson.decoder方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。