Levi Cameron

Results 25 comments of Levi Cameron

Looks like the issue is addressed in the docs and is due to the way babel exports ES6 module defaults: https://reasonml.github.io/reason-react/docs/en/element-type-is-invalid So ``` [@bs.module] external layout: ReasonReact.reactClass = "antd/lib/layout"; ```...

This syntax appears to work for members of the default export: ``` module Header = { [@bs.module "antd/lib/layout"] external header: ReasonReact.reactClass = "Header"; ``` should be ``` module Header =...

This seems to be exactly the same issue as #21 (so presumably same comments apply: if you don't generate es6 modules in your `bsconfig.json` then it might work without changes)

As mentioned, only one label will show up per commit. However the line between commits is also not drawn when you fork from the ignored branch -- this looks to...

I'm not convinced this _should_ work. From the python documentation ([2](https://docs.python.org/2/library/marshal.html) and [3](https://docs.python.org/3/library/marshal.html)) > The marshal module exists mainly to support reading and writing the “pseudo-compiled” code for Python modules...

It appears that `marshal` is in fact [intended to](https://stackoverflow.com/a/665283/6653190) throw an exception if you try to marshal a built-in subclass, but the [actual implementation](https://github.com/python/cpython/commit/12e94200c0b12487e129ce7e325d9315c12ca88a#diff-94df1415b90bc9b8fa0d1c17bca83de5R253) in 2.6 & 2.7 doesn't actually...

@kwist-sgr see [the link](https://stackoverflow.com/questions/665061/python-defaultdict-became-unmarshallable-object-in-2-6/665283#665283) in my previous comment: if jinja you were not supposed to be able to do this in python 2 but python didn't check for subtypes of...

(It should be noted that the bulk of the work is actually done in the python std lib: `Unipath` is just a wrapper to `os.path`. As long as you let...

(Note that ` pathlib.Path('a', 'b', unipath.Path('c', 'd'))` already works because `str` is an ancestor of `unipath.Path`)

@mikeorr Given that you've stated Unipath is in maintenance mode, would you accept a patch if I implemented this?