diff --git a/dios/dios.py b/dios/dios.py
index 6a8aced55b73084cd8566e7e94640447f36c500d..20a33eab6fc80d0b86e0ec6ab9a9bd361ed5ae81 100644
--- a/dios/dios.py
+++ b/dios/dios.py
@@ -229,20 +229,20 @@ class DictOfSeries:
         assert len(keys) == len(ixs)
 
         gen = self._unpack_value(keys, ixs, value)
-        for k, i, v in gen:
-            val = self._get_item(k, i, ixalign)
-            self._set_item(k, i, val)
+        for tup in gen:
+            self._set_item(*tup, ixalign)
 
-    def _set_item(self, key, ix, right):
+    def _set_item(self, key, ix, right, ixalign=False):
         """Set a value (scalar or list or series)"""
+        # right can be only a list, a pd.Series or a scalar
         ser = self._data[key]
+        if ixalign:
+            ix = ser.index.intersection(ix.index)
         if isinstance(right, pd.Series):
             left = ser[ix]
-            index = left.index.intersection(right.index)
-            if not index.empty:
-                ser.loc[index] = right.loc[index]
-        else:
-            ser[ix] = right
+            right = align_index_by_policy(left, right)
+            ix = right.index
+        ser.loc[ix] = right
 
     def _insert(self, col, val):
         """Insert a fresh new value into self"""
@@ -260,9 +260,13 @@ class DictOfSeries:
     def _unpack_value(self, keys, ixs, val):
         """Return a generator that yield (key, indexer, value) for all keys"""
         val = list(val) if is_iterator(val) else val
-        diosl, nlistl = is_dios_like(val), is_nested_list_like(val)
 
-        if (diosl or nlistl) and len(val) != len(keys):
+        if is_dios_like(val):
+            val = val.squeeze()
+
+        dioslike, nlistlike = is_dios_like(val), is_nested_list_like(val)
+
+        if (dioslike or nlistlike) and len(val) != len(keys):
             raise ValueError(f"could not broadcast input array with length {len(val)}"
                              f" into dios of length {len(keys)}")
 
@@ -271,9 +275,11 @@ class DictOfSeries:
         # do the dirty work.
         for i, _ in enumerate(keys):
             key, ix = keys[i], ixs[i]
-            if diosl:
+            if dioslike:
+                # we explicitly do not align keys here. usr can use .loc for this
+                # purpose, (but we do align on rows, later in the setting chain)
                 yield key, ix, val[val.columns[i]]
-            elif nlistl:
+            elif nlistlike:
                 yield key, ix, val[i]
             else:
                 yield key, ix, val
@@ -295,14 +301,14 @@ class DictOfSeries:
             if not isinstance(key, pd.Series):
                 raise ValueError("Must pass Series with boolean values only")
             keys = self.columns
-            indexer, ixalign = [key] * len(keys), True
+            indexer, ixalign = [key[key]] * len(keys), True
 
         elif is_dios_like(key):
             keys = self.columns.intersection(key.columns).to_list()
-            indexer, ixalign = [key[k] for k in keys], True
-            for k in indexer:
-                if not is_bool_indexer(k):
+            for k in keys:
+                if not is_bool_indexer(key[k]):
                     raise ValueError("Must pass DictOfSeries with boolean values only")
+            indexer, ixalign = [(key[k])[key[k]] for k in keys], True
         # slice
         # -----
         # slices always work rows too, but never fail and
diff --git a/dios/options.py b/dios/options.py
index f0614c11ea1b2ebdb804e8046b6c2d8d5057fbe3..3e1e57c0c0897cc674c69a419c7ee18c6920591b 100644
--- a/dios/options.py
+++ b/dios/options.py
@@ -4,30 +4,50 @@
 class OptsFields:
     """storage class for the keys in ``dios_options``"""
 
-    """Set the number of rows and variables to display in a call that use
-    ``__repr__`` or ``__str__`` like e.g. ``print(dios)`` do."""
-    disp_max_rows = "disp_max_rows "
-    disp_max_vars = "disp_max_vars"
+    """How to inform user about mixed Itype (warn/err/ignore)"""
+    mixed_itype_warn_policy = "mixed_itype_policy"
 
     """
-    none_plus: none or more columns, than in self, can be given
-    at_least_one: accept if at least one column is present in self
-    all_present: all given columns must be present in self
+    Set the number of rows and variables to display in a call that use
+    ``__repr__`` or ``__str__`` like e.g. ``print(dios)`` do.
     """
-    col_indexing_method = "col_indexing_method"
-
-    mixed_itype_warn_policy = "mixed_itype_policy"
+    disp_max_rows = "disp_max_rows "
+    disp_max_vars = "disp_max_vars"
 
     """
     should nans be droppend during comparision(drop), 
     stay nans (keep), or be compared (nplike). 
-    nplike is quite silly as `5 < NaN` will simply evaluate to False"""
+    nplike is quite silly as `5 < NaN` like every comparison 
+    will simply evaluate to False !
+    """
     comparison_nan_policy = "comparison_nan_policy"
 
     """
-    Get item nan policy:
+    Set item nan policy: 
+    How does self and other align. 
+    d1
+    ----    d2 
+    1: 1    -----
+    2: 2    2: 99
+    3: 3    3: 99
+            4: 99
+           
+    d1[:] = d2
     
+    pdlike/nplike/keepnan:
+    new d1:
+    ------
+    1: Nan
+    2: 99
+    3: 99
+    
+    dioslike/dropnan:
+    new d1:
+    ------
+    2: 99
+    3: 99 
     """
+    setitem_nan_policy = 'setitem_nan_policy'
 
 
 class Opts:
@@ -44,6 +64,7 @@ class Opts:
 
     keep_nans = 'keep'
     nplike_nans = 'nplike'
+    pdlike_nans = 'nplike'
     drop_nans = 'drop'
 
 
@@ -51,14 +72,23 @@ class Opts:
 dios_options = {
     OptsFields.disp_max_rows: 10,
     OptsFields.disp_max_vars: 4,
-    OptsFields.col_indexing_method: Opts.none_or_more,
     OptsFields.mixed_itype_warn_policy: Opts.itype_ignore,
     OptsFields.comparison_nan_policy: Opts.keep_nans,
+    OptsFields.setitem_nan_policy: Opts.keep_nans
 }
 
 
-def check_keys_by_policy(tocheck, keys, policy):
+def align_index_by_policy(left, right):
+    policy = dios_options[OptsFields.setitem_nan_policy]
+    if policy in [Opts.keep_nans, Opts.pdlike_nans]:
+        # return right.align(left, join='right')[0]
+        return right.reindex_like(left)
+    elif policy in [Opts.drop_nans]:
+        # return right.align(left, join='inner')[0]
+        return right.loc[left.index.intersection(right.index)]
+
 
+def get_keys_by_policy(tocheck, keys, policy):
     filtered = [k for k in tocheck if k in keys]
     if policy == Opts.none_up2_all:
         fail = [k for k in tocheck if k not in keys]
diff --git a/test/run_dios.py b/test/run_dios.py
index 77e680838960e15e0010099b50a34de66f0645c1..acc84515052b7b9aa220c211a739f9ac7a56d828 100644
--- a/test/run_dios.py
+++ b/test/run_dios.py
@@ -8,49 +8,14 @@ if __name__ == '__main__':
     # df = pd.DataFrame([1,24,5,456,45], index=pd.date_range(periods=5, freq='1d', start='2000-01-01'))
     # df[[True, False]]
 
-    a = pd.Series([1, 12, 2])
-    b = pd.Series([2, 12, 2])
-    c = pd.Series([2, 12, 2])
-    d = pd.Series([3, 12, 2])
-    x = pd.Series([a, b, c])
-    y = pd.Series([a, b, d])
-    k = x == y
-    print(k)
+    df1 = pd.DataFrame(dict(a=range(5), b=range(0,50,10)))
+    df2 = pd.DataFrame(dict(b=[99], a=[88]), index=range(3,8))
+    d1 = DictOfSeries(df1)
+    d2 = DictOfSeries(df2)
 
-    exit(9384)
+    d1[:] = d2
+    print(d1)
+    df1[:] = df2
+    print(df1)
 
-    dios = DictOfSeries(data=[234.54, 5, 5, 4, np.nan, 5, 4, 5])
 
-    dios = abs(~dios)
-
-    print(all(dios == dios))
-
-    dtser = pd.Series([2,4,4123,122,4], index=pd.date_range(freq='1d', periods=5, start='2000-01-01'))
-    dios['b'] = dtser
-    dios2 = dios.copy()
-
-    a = dios.loc[:]
-    df = pd.DataFrame([1,24,5,456,45], index=pd.date_range(periods=5, freq='1d', start='2000-01-01'))
-    dios == df
-    a = df.iloc[:,0]
-    print(dios)
-    exit(4)
-
-    dios.columns = ['foo', 'bar']
-
-    for k in reversed(dios):
-        print(k, dios[k], "\n")
-
-    exit(99)
-
-    dios.squeeze()
-    print(dios)
-    dd = dios + dios
-    dios.pipe(pd.Series.squeeze)
-    print()
-    print(dd)
-    # dios.dropna(inplace=True)
-    # print(dios)
-    ts = None
-    dios['var']
-    dios['var', ts:ts]
diff --git a/test/test__getsetitem__.py b/test/test__getsetitem__.py
index b8464b05377158d6b2c906b3ade78a97a8c310f8..2941de41603dd00201adbea506566bba748ca01b 100644
--- a/test/test__getsetitem__.py
+++ b/test/test__getsetitem__.py
@@ -61,11 +61,13 @@ def test__getitem_single_iloc_fail(idxer):
 
 
 BLIST = [True, False, False, True]
-BOOLIDXER = [pd.Series(BLIST), d1.copy() > 10]
+
 LISTIDXER = [['a'], ['a', 'c'], pd.Series(['a', 'c'])]
+BOOLIDXER = [pd.Series(BLIST), d1.copy() > 10]
 SLICEIDXER = [slice(None), slice(-3, -1), slice(-1, 3), slice(None, None, 3)]
 MULTIIDXER = []  # [d1 > 9, d1 != d1, d1 == d1]
 EMPTYIDEXER = [[], pd.Series(), slice(3, 3), slice(3, -1), DictOfSeries()]
+
 INDEXERS = LISTIDXER + BOOLIDXER + SLICEIDXER + MULTIIDXER + EMPTYIDEXER
 
 
diff --git a/test/test_df_like.py b/test/test_df_like.py
index d21f18b3bdaf4c91fcfa9bde4ed21a3904b314bd..17ee9a671d7e16267d9d44b6e170ecaa8dfd57b1 100644
--- a/test/test_df_like.py
+++ b/test/test_df_like.py
@@ -6,6 +6,7 @@ import pandas as pd
 import numpy as np
 from copy import deepcopy
 
+pytestmark = pytest.mark.skip
 
 __author__ = "Bert Palm"
 __email__ = "bert.palm@ufz.de"
diff --git a/test/test_dios_old.py b/test/test_dios_old.py
index b36aa35f8231b64eb062c169169fc7f96ad0888d..4b720ca0a31960a3cd4b0da88f37fd29d0aee018 100644
--- a/test/test_dios_old.py
+++ b/test/test_dios_old.py
@@ -5,7 +5,7 @@ import datetime as dt
 import numpy as np
 import pytest
 
-# pytestmark = pytest.mark.skip
+pytestmark = pytest.mark.skip
 
 
 v0 = 'var0'