Skip to content

Commit 87092d7

Browse files
committed
remove added functionality from whats new from newly released version
1 parent 01fc07c commit 87092d7

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

doc/whats-new.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ Claude, Deepak Cherian, Dimitri Papadopoulos Orfanos, Dylan H. Morris, Emmanuel
7878
New Features
7979
~~~~~~~~~~~~
8080

81-
- Improved ``pydap`` backend behavior and performance when using :py:func:`open_dataset`, :py:func:`open_datatree` when downloading dap4 (opendap) data (:issue:`10628`, :pull:`10629`).
82-
``batch=True|False`` is a new ``backend_kwarg`` that further enables downloading multiple arrays in single response. In addition ``checksums`` is added as optional argument to be passed to ``pydap`` backend.
83-
By `Miguel Jimenez-Urias <https://github.com/Mikejmnez>`_.
8481
- :py:func:`DataTree.from_dict` now supports passing in ``DataArray`` and nested
8582
dictionary values, and has a ``coords`` argument for specifying coordinates as
8683
``DataArray`` objects (:pull:`10658`).

xarray/backends/pydap_.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ def __getitem__(self, key):
5555

5656
def _getitem(self, key):
5757
if self._batch and hasattr(self.array, "dataset"):
58-
# this are both True only for pydap>3.5.5
59-
# from pydap.lib import resolve_batch_for_all_variables
58+
# True only for pydap>3.5.5
6059
from pydap.client import data_check, get_batch_data
6160

6261
dataset = self.array.dataset

0 commit comments

Comments
 (0)