App Engine Python SDK  v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
Functions | Variables
google.appengine._internal.django.utils.simplejson.scanner Namespace Reference

Functions

def py_make_scanner
 

Variables

 c_make_scanner = None
 
list __all__ = ['make_scanner']
 
tuple NUMBER_RE
 
 make_scanner = c_make_scannerorpy_make_scanner
 

Detailed Description

JSON token scanner

Variable Documentation

tuple google.appengine._internal.django.utils.simplejson.scanner.NUMBER_RE
Initial value:
1 = re.compile(
2  r'(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]?\d+)?',
3  (re.VERBOSE | re.MULTILINE | re.DOTALL))