##// 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:

r8987:c06f654b
r11144:e8549ce5
Show More
.travis.yml
14 lines | 347 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
before_install:
- easy_install -q pyzmq
install:
- python setup.py install -q
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi