Beispiel #1
0
def load_keyfunc():
  if settings.CARBONLINK_HASHING_KEYFUNC:
    module_path, func_name = settings.CARBONLINK_HASHING_KEYFUNC.rsplit(':', 1)
    log.cache("Using keyfunc %s found in %s" % (str(func_name), str(module_path)))
    return load_module(module_path, member=func_name)
  else:
    return lambda x: x
Beispiel #2
0
def load_keyfunc():
  if settings.CARBONLINK_HASHING_KEYFUNC:
    module_path, func_name = settings.CARBONLINK_HASHING_KEYFUNC.rsplit(':', 1)
    log.cache("Using keyfunc %s found in %s" % (str(func_name), str(module_path)))
    return load_module(module_path, member=func_name)
  else:
    return lambda x: x
Beispiel #3
0
 def test_load_module(self):
     with self.assertRaises(IOError):
         module = util.load_module('test', member=None)
Beispiel #4
0
 def test_load_module(self):
     with self.assertRaises(IOError):
         module = util.load_module('test', member=None)