本文整理匯總了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
示例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
示例3: test_py_scanstring
# 需要導入模塊: import simplejson [as 別名]
# 或者: from simplejson import decoder [as 別名]
def test_py_scanstring(self):
self._test_scanstring(simplejson.decoder.py_scanstring)
示例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)
示例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"))
示例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)
示例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))