当前位置: 首页>>代码示例>>Python>>正文


Python Util.dump方法代码示例

本文整理汇总了Python中util.Util.dump方法的典型用法代码示例。如果您正苦于以下问题:Python Util.dump方法的具体用法?Python Util.dump怎么用?Python Util.dump使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在util.Util的用法示例。


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

示例1: main

# 需要导入模块: from util import Util [as 别名]
# 或者: from util.Util import dump [as 别名]
def main():
    """ Example: UnitXObjectの変数を保存し,取り出し,確認する.
    """
    from simulator import Simulator
    s = Simulator()
    UnitXObject.manager = s.get_manager()
    UnitXObject.scopes = s.get_scopes()
    
    # Regist part
    crr_scope = s.get_scopes().peek()
    crr_scope['x'] = UnitXObject(value=1.5, varname='x', is_none=False, unit=Unit(ex_numer=u'm', numer=u'cm', ex_denom=None, denom=None))
    crr_scope['y'] = UnitXObject(value=1500, varname='y', is_none=False, unit=Unit(ex_numer=u'm', numer=u'km', ex_denom=u'時', denom=u'分'))
    s.get_scopes().new_scope()
    
    # Find & Show part
    found_scope = s.get_scopes().peek().find_scope_of('x')
    Util.dump(s.get_scopes())

    # Checking equals()
    tmp_obj = UnitXObject(value=1.5, varname='x', is_none=False, unit=Unit(ex_numer=None, numer=u'cm', ex_denom=None, denom=None))
    print tmp_obj
    print crr_scope['x'] == tmp_obj

    # Clear part
    s.get_scopes().del_scope()
    s.get_scopes().del_scope()
    return Constants.EXIT_SUCCESS
开发者ID:supertask,项目名称:UnitX,代码行数:29,代码来源:unitx_object.py

示例2: main

# 需要导入模块: from util import Util [as 别名]
# 或者: from util.Util import dump [as 别名]
def main():
    """Run an example for a Unit class."""

    from simulator import Simulator
    s = Simulator()
    manager = s.get_manager()

    minute = manager.get_criterion(u'分')
    hour = manager.get_criterion(u'時')
    value = 120 * (hour / minute)
    
    Util.dump(manager.unit_dict)
    print u'kind of unit:', manager.get_unit_id(u'分')
    print '%s分' % value
    print '-' * 10

    from unit import Unit
    print manager._trans_original_value(u"10:00 - 17:00", Unit(u'US_Eastern', u'Asia_Tokyo'))

    return Constants.EXIT_SUCCESS
开发者ID:supertask,项目名称:UnitX,代码行数:22,代码来源:unit_manager.py

示例3: main

# 需要导入模块: from util import Util [as 别名]
# 或者: from util.Util import dump [as 别名]
def main():
    """Run an example for a ScopeList class."""
    from unitx_object import UnitXObject
    from unit import Unit

    scopes = ScopeList()
    scopes.new_scope()
    scopes.peek()['x'] = UnitXObject(value=2, varname='x', unit=Unit())
    scopes.new_scope()
    scopes.peek()['y'] = UnitXObject(value=3, varname='y', unit=Unit())

    Util.dump(scopes)
    scopes.del_scope()
    Util.dump(scopes)
    scopes.del_scope()
    Util.dump(scopes)

    return Constants.EXIT_SUCCESS
开发者ID:supertask,项目名称:UnitX,代码行数:20,代码来源:scope_list.py


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