All Samples(34) | Call(0) | Derive(0) | Import(34)
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/w/e/webnest-HEAD/env/lib/python2.6/site-packages/werkzeug/contrib/cache.py webnest(Download)
from md5 import new as md5
from itertools import izip
from time import time
from cPickle import loads, dumps, load, dump, HIGHEST_PROTOCOL
class BaseCache(object):
def set(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
self._prune()
self._cache[key] = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
def add(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
if len(self._cache) > self._threshold:
self._prune()
item = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
except:
pass
else:
client = memcache.Client(servers, False, HIGHEST_PROTOCOL)
else:
client = servers
f = file(filename, 'wb')
try:
dump(int(time() + timeout), f, 1)
dump(value, f, HIGHEST_PROTOCOL)
finally:
f.close()
except (IOError, OSError):
src/z/a/zamboni-lib-HEAD/lib/python/werkzeug/contrib/cache.py zamboni-lib(Download)
from md5 import new as md5
from itertools import izip
from time import time
from cPickle import loads, dumps, load, dump, HIGHEST_PROTOCOL
class BaseCache(object):
def set(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
self._prune()
self._cache[key] = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
def add(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
if len(self._cache) > self._threshold:
self._prune()
item = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
except:
pass
else:
client = memcache.Client(servers, False, HIGHEST_PROTOCOL)
else:
client = servers
f = file(filename, 'wb')
try:
dump(int(time() + timeout), f, 1)
dump(value, f, HIGHEST_PROTOCOL)
finally:
f.close()
except (IOError, OSError):
src/u/l/uliweb-HEAD/uliweb/lib/werkzeug/contrib/cache.py uliweb(Download)
from md5 import new as md5
from itertools import izip
from time import time
from cPickle import loads, dumps, load, dump, HIGHEST_PROTOCOL
have_memcache = True
try:
def set(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
self._prune()
self._cache[key] = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
def add(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
if len(self._cache) > self._threshold:
self._prune()
item = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
except:
pass
else:
self._client = memcache.Client(servers, False, HIGHEST_PROTOCOL)
def get(self, key):
if isinstance(key, unicode):
f = file(filename, 'wb')
try:
dump(int(time() + timeout), f, 1)
dump(value, f, HIGHEST_PROTOCOL)
finally:
f.close()
except (IOError, OSError):
src/p/y/pythonedinburgh-HEAD/werkzeug/contrib/cache.py pythonedinburgh(Download)
from md5 import new as md5
from itertools import izip
from time import time
from cPickle import loads, dumps, load, dump, HIGHEST_PROTOCOL
class BaseCache(object):
def set(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
self._prune()
self._cache[key] = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
def add(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
if len(self._cache) > self._threshold:
self._prune()
item = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
except:
pass
else:
client = memcache.Client(servers, False, HIGHEST_PROTOCOL)
else:
client = servers
f = file(filename, 'wb')
try:
dump(int(time() + timeout), f, 1)
dump(value, f, HIGHEST_PROTOCOL)
finally:
f.close()
except (IOError, OSError):
src/u/l/Uliweb-0.0.1a2/uliweb/lib/werkzeug/contrib/cache.py Uliweb(Download)
from md5 import new as md5
from itertools import izip
from time import time
from cPickle import loads, dumps, load, dump, HIGHEST_PROTOCOL
class BaseCache(object):
def set(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
self._prune()
self._cache[key] = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
def add(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
if len(self._cache) > self._threshold:
self._prune()
item = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
except:
pass
else:
client = memcache.Client(servers, False, HIGHEST_PROTOCOL)
else:
client = servers
f = file(filename, 'wb')
try:
dump(int(time() + timeout), f, 1)
dump(value, f, HIGHEST_PROTOCOL)
finally:
f.close()
except (IOError, OSError):
src/w/e/Werkzeug-0.6.2/werkzeug/contrib/cache.py Werkzeug(Download)
from md5 import new as md5
from itertools import izip
from time import time
from cPickle import loads, dumps, load, dump, HIGHEST_PROTOCOL
class BaseCache(object):
def set(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
self._prune()
self._cache[key] = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
def add(self, key, value, timeout=None):
if timeout is None:
timeout = self.default_timeout
if len(self._cache) > self._threshold:
self._prune()
item = (time() + timeout, dumps(value, HIGHEST_PROTOCOL))
except:
pass
else:
client = memcache.Client(servers, False, HIGHEST_PROTOCOL)
else:
client = servers
f = file(filename, 'wb')
try:
dump(int(time() + timeout), f, 1)
dump(value, f, HIGHEST_PROTOCOL)
finally:
f.close()
except (IOError, OSError):
src/u/l/uliweb-HEAD/uliweb/lib/werkzeug/contrib/securecookie.py uliweb(Download)
from datetime import datetime from time import time, mktime, gmtime from random import Random from cPickle import loads, dumps, HIGHEST_PROTOCOL from werkzeug import url_quote_plus, url_unquote_plus from werkzeug.contrib.sessions import ModificationTrackingDict, generate_key
def pickle_quote(value):
"""Pickle and url encode a value."""
result = None
for protocol in xrange(HIGHEST_PROTOCOL + 1):
data = ''.join(dumps(value, protocol).encode('base64').splitlines()).strip()
if result is None or len(result) > len(data):
result = data
src/p/r/Products.CMFEditions-2.0.2/Products/CMFEditions/ZVCStorageTool.py Products.CMFEditions(Download)
import time import types from StringIO import StringIO from cPickle import Pickler, Unpickler, dumps, loads, HIGHEST_PROTOCOL from zope.interface import implements from App.class_init import InitializeClass
comment = dumps(comment)
except KeyError:
comment = ''
return '\x00\n'.join((comment, dumps(metadata, HIGHEST_PROTOCOL)))
def _retrieveMetadataFromZVC(self, zvc_histid, zvc_selector):
logEntry = self._retrieveZVCLogEntry(zvc_histid, zvc_selector)
src/w/e/webnest-HEAD/env/lib/python2.6/site-packages/werkzeug/contrib/sessions.py webnest(Download)
from hashlib import sha1
except ImportError:
from sha import new as sha1
from cPickle import dump, load, HIGHEST_PROTOCOL
from werkzeug import ClosingIterator, dump_cookie, parse_cookie, CallbackDict
from werkzeug.posixemulation import rename
def save(self, session):
fn = self.get_session_filename(session.sid)
fd, tmp = tempfile.mkstemp(suffix=_fs_transaction_suffix,
dir=self.path)
f = os.fdopen(fd, 'wb')
try:
dump(dict(session), f, HIGHEST_PROTOCOL)
src/z/a/zamboni-lib-HEAD/lib/python/werkzeug/contrib/sessions.py zamboni-lib(Download)
from hashlib import sha1
except ImportError:
from sha import new as sha1
from cPickle import dump, load, HIGHEST_PROTOCOL
from werkzeug import ClosingIterator, dump_cookie, parse_cookie, CallbackDict
from werkzeug.posixemulation import rename
def save(self, session):
fn = self.get_session_filename(session.sid)
fd, tmp = tempfile.mkstemp(suffix=_fs_transaction_suffix,
dir=self.path)
f = os.fdopen(fd, 'wb')
try:
dump(dict(session), f, HIGHEST_PROTOCOL)
1 | 2 | 3 | 4 Next