Skip to content

Commit

Permalink
Merge pull request #1643 from electronwill/doc-errors
Browse files Browse the repository at this point in the history
fix doc errors
  • Loading branch information
postelrich committed Sep 6, 2017
2 parents 9729636 + 6df3dec commit bd7fddc
Show file tree
Hide file tree
Showing 15 changed files with 94 additions and 93 deletions.
2 changes: 1 addition & 1 deletion blaze/expr/expressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ def binop_inputs(expr):
class Coalesce(Expr):
"""SQL like coalesce.
.. code-block python
.. code-block:: python
coalesce(a, b) = {
a if a is not NULL
Expand Down
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ User facing
ooc
server
datashape
timeseries
what-blaze-isnt
api
releases
Expand Down
2 changes: 1 addition & 1 deletion docs/source/server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Command Line Interface
2. Windows
.. code-block:: powershell
.. code-block:: none
# If you're on Windows you can do this with powershell
PS C:\> @'
Expand Down
16 changes: 8 additions & 8 deletions docs/source/whatsnew/0.10.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Release 0.10.0
:Date: TBD

New Expressions
~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^

* The ``sample`` expression allows random sampling of rows to facilitate
interactive data exploration (:issue:`1410`). It is implemented for the
Expand All @@ -32,7 +32,7 @@ New Expressions
(:issue:`1409`).

Improved Expressions
~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^

* The test suite was expanded to validate proper expression input error handling
(:issue:`1420`).
Expand All @@ -43,20 +43,20 @@ Improved Expressions
ordering of the columns in the result (:issue:`1447`).

New Backends
~~~~~~~~~~~~
^^^^^^^^^^^^

None

Improved Backends
~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^

* Adds :class:`~blaze.expr.math.greatest` and :class:`~blaze.expr.math.least`
support to the sql backend (:issue:`1428`).
* Generalize ``Field`` to support :class:`collections.Mapping` object
(:issue:`1467`).

Experimental Features
~~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^^

* The :class:`~blaze.expr.strings.str_upper` and
:class:`~blaze.expr.strings.str_lower` expressions were added for the Pandas
Expand All @@ -65,7 +65,7 @@ Experimental Features
versions.

API Changes
~~~~~~~~~~~
^^^^^^^^^^^

* The :class:`~blaze.expr.strings.strlen` expression was deprecated in favor of
:class:`~blaze.expr.strings.str_len` (:issue:`1462`).
Expand Down Expand Up @@ -106,7 +106,7 @@ API Changes


Bug Fixes
~~~~~~~~~
^^^^^^^^^

* The :class:`~blaze.expr.strings.str_upper` and
:class:`~blaze.expr.strings.str_lower` schemas were fixed to pass through
Expand All @@ -125,7 +125,7 @@ Bug Fixes


Miscellaneous
~~~~~~~~~~~~~
^^^^^^^^^^^^^

* Adds logging to server compute endpoint. Includes expression being computed
and total time to compute. (:issue:`1436`)
Expand Down
16 changes: 8 additions & 8 deletions docs/source/whatsnew/0.10.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,49 +5,49 @@ Release 0.10.1
:Date: TBD

New Expressions
~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^

None

Improved Expressions
~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^

None

New Backends
~~~~~~~~~~~~
^^^^^^^^^^^^

None

Improved Backends
~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^

* Blaze server's ``/add`` endpoint was enhanced to take a more general payload
(:issue:`1481`).
* Adds consistency check to blaze server at startup for YAML file and dynamic
addition options (:issue:`1491`).

Experimental Features
~~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^^

* The ``str_cat()`` expression was added, mirroring Pandas'
``Series.str.cat()`` API (:issue:`1496`).

API Changes
~~~~~~~~~~~
^^^^^^^^^^^

None


Bug Fixes
~~~~~~~~~
^^^^^^^^^

* The content type specification parsing was improved to accept more elaborate
headers (:issue:`1490`).
* The discoverablility consistency check is done before a dataset is
dynamically added to the server (:issue:`1498`).

Miscellaneous
~~~~~~~~~~~~~
^^^^^^^^^^^^^

None
18 changes: 9 additions & 9 deletions docs/source/whatsnew/0.10.2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ Release 0.10.2
:Release: 0.10.2

New Expressions
~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^

None

Improved Expressions
~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^

* Adds support for ``any`` and ``all`` to the sql backend (:issue:`1511`).

New Backends
~~~~~~~~~~~~
^^^^^^^^^^^^

None

Improved Backends
~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^

* To allow access to the ``map`` and ``apply`` expressions in client / server
interactions when in a trusted environment, new ``_trusted`` versions of the
Expand All @@ -30,17 +30,17 @@ Improved Backends
environments (:issue:`1497` :issue:`1504`).

Experimental Features
~~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^^

None

API Changes
~~~~~~~~~~~
^^^^^^^^^^^

None

Bug Fixes
~~~~~~~~~
^^^^^^^^^

* Fixed a bug with ``to_tree()`` and ``slice`` objects. Have to change the
order of cases in ``to_tree()`` to ensure ``slice`` objects are handled
Expand All @@ -53,10 +53,10 @@ Bug Fixes
(:issue:`1528`).

Miscellaneous
~~~~~~~~~~~~~
^^^^^^^^^^^^^

Expression Identity Rework
``````````````````````````
""""""""""""""""""""""""""

Expression are now memoized by their inputs. This means that two identical
expressions will always be the same object, or that ``a.isidentical(b)`` is the
Expand Down
16 changes: 8 additions & 8 deletions docs/source/whatsnew/0.11.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Release 0.11.0
:Release: 0.11.0

New Expressions
~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^

* Many new string utility expressions were added that follow the Pandas
vectorized string methods API closely
Expand All @@ -21,27 +21,27 @@ New Expressions
`<http://pandas.pydata.org/pandas-docs/stable/timeseries.html>`_.

Improved Expressions
~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^

None

New Backends
~~~~~~~~~~~~
^^^^^^^^^^^^

None

Improved Backends
~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^

None

Experimental Features
~~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^^

None

API Changes
~~~~~~~~~~~
^^^^^^^^^^^

* The following functions were deprecated in favor of equivalent functions
without the `str_` name prefix:
Expand All @@ -57,11 +57,11 @@ API Changes


Bug Fixes
~~~~~~~~~
^^^^^^^^^

None

Miscellaneous
~~~~~~~~~~~~~
^^^^^^^^^^^^^

None
16 changes: 8 additions & 8 deletions docs/source/whatsnew/0.11.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,39 @@ Release 0.11.1
:Release: 0.11.1

New Expressions
~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^

None

Improved Expressions
~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^

None

New Backends
~~~~~~~~~~~~
^^^^^^^^^^^^

None

Improved Backends
~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^

* The CSV backend was refactored to use ``dask.dataframe``. Previously it used
``odo.chunks`` (:issue:`1549`).
* Configurable blaze server logging was added (:issue:`1521`).

Experimental Features
~~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^^

None

API Changes
~~~~~~~~~~~
^^^^^^^^^^^

None

Bug Fixes
~~~~~~~~~
^^^^^^^^^

* Fixed a testing regression introduced by the latest pymysql version
(:issue:`1571`).
Expand All @@ -48,6 +48,6 @@ Bug Fixes
(:issue:`1585`).

Miscellaneous
~~~~~~~~~~~~~
^^^^^^^^^^^^^

* Support for Python 3.5 added.
14 changes: 7 additions & 7 deletions docs/source/whatsnew/0.11.2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,37 @@ Release 0.11.2
:Release: 0.11.2

New Expressions
~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^

None

Improved Expressions
~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^

None

New Backends
~~~~~~~~~~~~
^^^^^^^^^^^^

None

Improved Backends
~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^

None

Experimental Features
~~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^^

None

API Changes
~~~~~~~~~~~
^^^^^^^^^^^

None

Bug Fixes
~~~~~~~~~
^^^^^^^^^

* `blaze.data()` now respects an explicit `dshape` argument in all cases
(:issue:`1589`).

0 comments on commit bd7fddc

Please sign in to comment.