Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(39) | Call(39) | Derive(0) | Import(0)
src/c/o/CollabQ-HEAD/common/sms.py CollabQ(Download)
def channel_join(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) channel = clean.channel(nick)
def channel_part(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) channel = clean.channel(nick)
""" sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN)
def actor_add_contact(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) clean_nick = clean.nick(nick)
def actor_remove_contact(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) clean_nick = clean.nick(nick)
src/j/a/JaikuEngine-HEAD/common/sms.py JaikuEngine(Download)
def channel_join(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) channel = clean.channel(nick)
def channel_part(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) channel = clean.channel(nick)
""" sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN)
def actor_add_contact(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) clean_nick = clean.nick(nick)
def actor_remove_contact(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) clean_nick = clean.nick(nick)
src/j/a/jaikuenginepatch-HEAD/common/sms.py jaikuenginepatch(Download)
def channel_join(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) channel = clean.channel(nick)
def channel_part(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) channel = clean.channel(nick)
""" sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN)
def actor_add_contact(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) clean_nick = clean.nick(nick)
def actor_remove_contact(self, sender, nick): sender_ref = api.actor_lookup_mobile(api.ROOT, sender) if not sender_ref: raise exception.ValidationError(HELP_SIGN_IN) clean_nick = clean.nick(nick)
src/j/a/JaikuEngine-HEAD/common/test/api.py JaikuEngine(Download)
actor_ref, actor_ref.nick, activation_ref.code) lookup_ref = api.actor_lookup_mobile(actor_ref, mobile) self.assertEqual(lookup_ref.nick, actor_ref.nick)
src/c/o/CollabQ-HEAD/common/test/api.py CollabQ(Download)
actor_ref, actor_ref.nick, activation_ref.code) lookup_ref = api.actor_lookup_mobile(actor_ref, mobile) self.assertEqual(lookup_ref.nick, actor_ref.nick)
src/j/a/jaikuenginepatch-HEAD/common/test/api.py jaikuenginepatch(Download)
actor_ref, actor_ref.nick, activation_ref.code) lookup_ref = api.actor_lookup_mobile(actor_ref, mobile) self.assertEqual(lookup_ref.nick, actor_ref.nick)