It looks to me that ```python sel = fluid.select() with sel.read_case(ch, x): do_something_with(x) ``` is a little more readable than ```python sel = fluid.select() with sel.case(ch, X, 'r'): do_something_with(x) ``` What do you think?