• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python serializable.serialize_object函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中serializable.serialize_object函数的典型用法代码示例。如果您正苦于以下问题:Python serialize_object函数的具体用法?Python serialize_object怎么用?Python serialize_object使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了serialize_object函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: ping

 def ping(self, data):
     flag = isinstance(data, serializable.Serializable)
     if flag:
         data = serializable.serialize_object(data)
     data = self.__ibus.Ping(data, dbus_interface="org.freedesktop.IBus")
     if flag:
         data = serializable.deserialize_object(data)
     return data
开发者ID:XueWei,项目名称:ibus,代码行数:8,代码来源:bus.py


示例2: set_surrounding_text

 def set_surrounding_text(self, text, cursor_pos):
     if self.__surrounding_text.get_text() != text or \
             self.__surrounding_cursor_pos != cursor_pos:
         self.__surrounding_text = Text(text)
         self.__surrounding_cursor_pos = cursor_pos
         text = serializable.serialize_object(self.__surrounding_text)
         cursor_pos = dbus.UInt32(self.__surrounding_cursor_pos)
         self.__context.SetSurroundingText(text, cursor_pos)
开发者ID:Alberto-Beralix,项目名称:Beralix,代码行数:8,代码来源:inputcontext.py


示例3: update_property

 def update_property(self, prop):
     dbus_values = serializable.serialize_object(prop)
     return self.__proxy.UpdateProperty(dbus_values)
开发者ID:ryoqun,项目名称:ibus,代码行数:3,代码来源:engine.py


示例4: register_properties

 def register_properties(self, props):
     dbus_values = serializable.serialize_object(props)
     return self.__proxy.RegisterProperties(dbus_values)
开发者ID:ryoqun,项目名称:ibus,代码行数:3,代码来源:engine.py


示例5: update_lookup_table

 def update_lookup_table(self, lookup_table, visible, just_current_page = False):
     if just_current_page:
         lookup_table = lookup_table.get_current_page_as_lookup_table()
     dbus_values = serializable.serialize_object(lookup_table)
     return self.__proxy.UpdateLookupTable(dbus_values, visible)
开发者ID:ryoqun,项目名称:ibus,代码行数:5,代码来源:engine.py


示例6: update_auxiliary_text

 def update_auxiliary_text(self, text, visible):
     text = serializable.serialize_object(text)
     return self.__proxy.UpdateAuxiliaryText(text, visible)
开发者ID:ryoqun,项目名称:ibus,代码行数:3,代码来源:engine.py


示例7: update_preedit_text

 def update_preedit_text(self, text, cursor_pos, visible, mode=common.IBUS_ENGINE_PREEDIT_CLEAR):
     text = serializable.serialize_object(text)
     return self.__proxy.UpdatePreeditText(text, cursor_pos, visible, mode)
开发者ID:ryoqun,项目名称:ibus,代码行数:3,代码来源:engine.py


示例8: commit_text

 def commit_text(self, text):
     text = serializable.serialize_object(text)
     return self.__proxy.CommitText(text)
开发者ID:ryoqun,项目名称:ibus,代码行数:3,代码来源:engine.py


示例9: register_component

 def register_component(self, component):
     component = serializable.serialize_object(component)
     return self.__ibus.RegisterComponent(component)
开发者ID:XueWei,项目名称:ibus,代码行数:3,代码来源:bus.py


示例10: update_preedit_text

 def update_preedit_text(self, text, cursor_pos, visible):
     text = serializable.serialize_object(text)
     return self.__proxy.UpdatePreeditText(text, cursor_pos, visible)
开发者ID:iwaim,项目名称:ibus,代码行数:3,代码来源:engine.py



注:本文中的serializable.serialize_object函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python serialization.AMQPWriter类代码示例发布时间:2022-05-27
下一篇:
Python serial_manager.SerialManager类代码示例发布时间:2022-05-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap