Emergency Self-Construct

Results 879 comments of Emergency Self-Construct

I don't understand your question, could you elaborate a little.

Okay. @FrancescAlted would you like to see this feature?

What is the status of this https://github.com/Blosc/c-blosc/issues/92 has been resolved, right? Does 1.6 work better on your machine now?

@ARF1 you may want to join the bcolz google group: https://groups.google.com/forum/#!forum/bcolz We have been discussing bdot over there for a few days already.

I actually get this: ``` AssertionError Traceback (most recent call last) in () ----> 1 a[0] = val /home/esc/gw/bcolz/bcolz/ctable.pyc in __setitem__(self, key, value) 1153 # Then, modify the rows 1154...

Also, I tried using unpacking, but this fails: ``` In [21]: a[0][0], a[0][1], a[0][2], a[0][3] = val In [22]: a Out[22]: ctable((3,), [('a', 'O'), ('b', 'u1'), ('c', '

There is an error with setting values by index when using a carray with a string type: ``` In [1]: import bcolz In [2]: b1 = bcolz.carray([None, None, 'World']) In...

Update, it is only a problem if you use the 'object' type. You could use `"S4"` as dtype for the string column, in which case the assignment works (but the...

Yeah, definitely object dtype issue: ``` In [2]: import bcolz In [3]: b1 = bcolz.carray(['World']) In [4]: b1 Out[4]: carray((1,), |S5) nbytes: 5; cbytes: 16.00 KB; ratio: 0.00 cparams :=...

Can you submit a pull-request with a test-case that exposes the issue?