diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2012-03-25 14:54:03 +0200 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2012-03-30 05:41:00 -0600 |
commit | 0168296657b279cd225b2f525613d152cb3b65dd (patch) | |
tree | 9847096100a9344c6ff7d3f3b03bf192219cdc25 /doc | |
parent | 41f7d21182fddbc71b2100fdb3425a5e7e2f35b6 (diff) | |
download | numpy-0168296657b279cd225b2f525613d152cb3b65dd.tar.gz |
DOC: label datetime support as experimental. Closes #2072.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/2.0.0-notes.rst | 8 | ||||
-rw-r--r-- | doc/source/reference/arrays.datetime.rst | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst index eec2b7933..2c80c84a6 100644 --- a/doc/release/2.0.0-notes.rst +++ b/doc/release/2.0.0-notes.rst @@ -88,6 +88,14 @@ throw away the reduction axes but instead sets them to have size one. When this option is set, the reduction result will broadcast correctly to the original operand which was reduced. +Datetime support +---------------- + +.. note:: The datetime API is *experimental* in 1.7.0, and may undergo changes + in future versions of NumPy. + +TODO: describe changes in datetime + Custom formatter for printing arrays ------------------------------------ diff --git a/doc/source/reference/arrays.datetime.rst b/doc/source/reference/arrays.datetime.rst index d0f037bcb..9d0c492f3 100644 --- a/doc/source/reference/arrays.datetime.rst +++ b/doc/source/reference/arrays.datetime.rst @@ -13,6 +13,9 @@ support datetime functionality. The data type is called "datetime64", so named because "datetime" is already taken by the datetime library included in Python. +.. note:: The datetime API is *experimental* in 1.7.0, and may undergo changes + in future versions of NumPy. + Basic Datetimes =============== |