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


Python tzinfo.normalize方法代码示例

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


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

示例1: normalize

# 需要导入模块: from datetime import tzinfo [as 别名]
# 或者: from datetime.tzinfo import normalize [as 别名]
def normalize(self, dt, is_dst=False):
        '''Correct the timezone information on the given datetime.

        This is normally a no-op, as StaticTzInfo timezones never have
        ambiguous cases to correct:

        >>> from pytz import timezone
        >>> gmt = timezone('GMT')
        >>> isinstance(gmt, StaticTzInfo)
        True
        >>> dt = datetime(2011, 5, 8, 1, 2, 3, tzinfo=gmt)
        >>> gmt.normalize(dt) is dt
        True

        The supported method of converting between timezones is to use
        datetime.astimezone(). Currently normalize() also works:

        >>> la = timezone('America/Los_Angeles')
        >>> dt = la.localize(datetime(2011, 5, 7, 1, 2, 3))
        >>> fmt = '%Y-%m-%d %H:%M:%S %Z (%z)'
        >>> gmt.normalize(dt).strftime(fmt)
        '2011-05-07 08:02:03 GMT (+0000)'
        '''
        if dt.tzinfo is self:
            return dt
        if dt.tzinfo is None:
            raise ValueError('Naive time - no tzinfo set')
        return dt.astimezone(self) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:30,代码来源:tzinfo.py

示例2: normalize

# 需要导入模块: from datetime import tzinfo [as 别名]
# 或者: from datetime.tzinfo import normalize [as 别名]
def normalize(self, dt, is_dst=False):
        '''Correct the timezone information on the given datetime'''
        if dt.tzinfo is None:
            raise ValueError, 'Naive time - no tzinfo set'
        return dt.replace(tzinfo=self) 
开发者ID:liantian-cn,项目名称:RSSNewsGAE,代码行数:7,代码来源:tzinfo.py


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