##// END OF EJS Templates
add IPython.utils.tz...
add IPython.utils.tz Basic support for tz-aware UTC methods on date time objects. The raw `utcfoo` methods still produce naïve objects, so they are wrapped in a simple zero-offset tz-aware object. This allows jsonutil to publish the timezone info, eliminating the ambiguity of naïve timestamps (Firefox assumes local time, WebKit UTC).

File last commit:

r11089:45d39d22
r11144:e8549ce5
Show More
python_armor.py
32 lines | 1.0 KiB | text/x-python | PythonLexer
"""
Exporter that exports a Python-Armor code file (.py)
"""
#-----------------------------------------------------------------------------
# Copyright (c) 2013, the IPython Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from IPython.utils.traitlets import Unicode
from .python import PythonExporter
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
class PythonArmorExporter(PythonExporter):
"""
Exports a Python-Armor code file (.py)
"""
template_file = Unicode(
'python_armor', config=True,
help="Name of the template file to use")