• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(60)  |  Call(0)  |  Derive(0)  |  Import(60)
int(x[, base]) -> integer

Convert a string or number to an integer, if possible.  A floating point
argument will be truncated towards zero (this does not include a string
representation of a floating point number!)  When converting a string, use
the optional base.  It is an error to supply a base when converting a
non-string.  If base is zero, the proper base is guessed based on the
string content.  If the argument is outside the integer range a
long object will be returned instead.

src/p/y/PyAMF-HEAD/doc/tutorials/examples/actionscript/google_appengine/simplejson/scanner.py   PyAMF(Download)
"""
Iterator based sre token scanner
"""
import sre_parse, sre_compile, sre_constants
from sre_constants import BRANCH, SUBPATTERN
from re import VERBOSE, MULTILINE, DOTALL
import re
 
__all__ = ['Scanner', 'pattern']
 
FLAGS = (VERBOSE | MULTILINE | DOTALL)

src/p/o/polinax-HEAD/libs/external_libs/simplejson-1.9.1/simplejson/scanner.py   polinax(Download)
"""
Iterator based sre token scanner
"""
import re
from re import VERBOSE, MULTILINE, DOTALL
import sre_parse
import sre_compile
import sre_constants
from sre_constants import BRANCH, SUBPATTERN
 
__all__ = ['Scanner', 'pattern']
 
FLAGS = (VERBOSE | MULTILINE | DOTALL)

src/g/e/geraldo-HEAD/site/newsite/site-geraldo/django/utils/simplejson/scanner.py   geraldo(Download)
"""
Iterator based sre token scanner
"""
import re
from re import VERBOSE, MULTILINE, DOTALL
import sre_parse
import sre_compile
import sre_constants
from sre_constants import BRANCH, SUBPATTERN
 
__all__ = ['Scanner', 'pattern']
 
FLAGS = (VERBOSE | MULTILINE | DOTALL)

src/g/e/geraldo-HEAD/site/newsite/django_1_0/django/utils/simplejson/scanner.py   geraldo(Download)
"""
Iterator based sre token scanner
"""
import re
from re import VERBOSE, MULTILINE, DOTALL
import sre_parse
import sre_compile
import sre_constants
from sre_constants import BRANCH, SUBPATTERN
 
__all__ = ['Scanner', 'pattern']
 
FLAGS = (VERBOSE | MULTILINE | DOTALL)

src/w/e/wecowi-HEAD/trunk/tools/pywecowi/simplejson/scanner.py   wecowi(Download)
"""
Iterator based sre token scanner
"""
import sre_parse, sre_compile, sre_constants
from sre_constants import BRANCH, SUBPATTERN
from re import VERBOSE, MULTILINE, DOTALL
import re
 
__all__ = ['Scanner', 'pattern']
 
FLAGS = (VERBOSE | MULTILINE | DOTALL)

src/g/o/google-app-engine-HEAD/lib/django/django/utils/simplejson/scanner.py   google-app-engine(Download)
"""
Iterator based sre token scanner
"""
import sre_parse, sre_compile, sre_constants
from sre_constants import BRANCH, SUBPATTERN
from re import VERBOSE, MULTILINE, DOTALL
import re
 
__all__ = ['Scanner', 'pattern']
 
FLAGS = (VERBOSE | MULTILINE | DOTALL)

src/u/n/unladen-swallow-HEAD/Lib/json/scanner.py   unladen-swallow(Download)
import sre_compile
import sre_constants
 
from re import VERBOSE, MULTILINE, DOTALL
from sre_constants import BRANCH, SUBPATTERN
 
__all__ = ['Scanner', 'pattern']
 
FLAGS = (VERBOSE | MULTILINE | DOTALL)

src/g/o/google_appengine-HEAD/lib/django/django/utils/simplejson/scanner.py   google_appengine(Download)
"""
Iterator based sre token scanner
"""
import sre_parse, sre_compile, sre_constants
from sre_constants import BRANCH, SUBPATTERN
from re import VERBOSE, MULTILINE, DOTALL
import re
 
__all__ = ['Scanner', 'pattern']
 
FLAGS = (VERBOSE | MULTILINE | DOTALL)

src/p/y/python2.6-cmake-HEAD/Lib/json/scanner.py   python2.6-cmake(Download)
import sre_compile
import sre_constants
 
from re import VERBOSE, MULTILINE, DOTALL
from sre_constants import BRANCH, SUBPATTERN
 
__all__ = ['Scanner', 'pattern']
 
FLAGS = (VERBOSE | MULTILINE | DOTALL)

src/s/l/SlopPy-HEAD/Lib/json/scanner.py   SlopPy(Download)
import sre_compile
import sre_constants
 
from re import VERBOSE, MULTILINE, DOTALL
from sre_constants import BRANCH, SUBPATTERN
 
__all__ = ['Scanner', 'pattern']
 
FLAGS = (VERBOSE | MULTILINE | DOTALL)

  1 | 2 | 3 | 4 | 5 | 6  Next