rpgoldman

Results 153 issues of rpgoldman

numpy will actually accept not just lists, but also tuples as array-like. Discovered this by getting a type error on code that worked correctly.

There are many types that are unions of `List` and `np.ndarray` and `Series`. These should probably all be transformed to use `Sequence` instead (which also would cover legitimate uses of...

Should there be a type that captures the type of thing that can be given as a dtype spec? I believe that this is `Union[_str, Type[_np.dtype]]`, but I could be...

I have these two calls: ``` master_df[DF_VAR_COLUMN] = np.empty(shape=master_df.shape[0], dtype=str) master_df[DF_VAR_IDX_COLUMN] = np.empty(shape=master_df.shape[0], dtype=int) ``` With the numpy stubs in place, mypy does not like this, claiming that: ``` eval.py:809:...

For better utilizing the limited human resources, please include the following information when reporting an issue. Issues which do not follow the format may be immediately closed without review. ##...

I just published XMLS 3.2.0 The git repo for the project hasn't changed (but you might want to use the `release` branch instead of `master`). The https should be updated...

The original repository at hankhero/cl-json is no longer maintained. CL-JSON has been adopted into sharplispers at https://github.com/sharplispers/cl-json/releases/tag/v0.6.0 and I have just released version 0.6 which contains a number of pull...

When I load [the W3C Provenance ontology](http://www.w3.org/ns/prov) into Protege, I get these log messages. The "Illegal redeclarations of entities" warnings are the ones that seem concerning: ``` INFO 10:21:15 Loading...

I was trying to debug a problem with the web catalog, where my imports were not being found as I expected they should. This was made more difficult by the...