Noah Morrison

Results 13 comments of Noah Morrison

I do not have one yet. I will make one for the next release and then if some kind soul feels bored they (or I) can fill it in later...

Yeah this sounds reasonable. I guess the way to do this would be to rename and change the current function to return an Error on failures, and replace the function...

Here's the relevant [commit](https://github.com/noahmorrison/chevron/commit/9a5130eb9574021b8d810ff9af8ba5795e2bff3c) With a [test case here](https://github.com/noahmorrison/chevron/blob/9a5130eb9574021b8d810ff9af8ba5795e2bff3c/test_spec.py#L502) If this satisfies what you wanted I can merge it in.

Thanks for looking into that! I'm unsure if you meant to do anything besides just changing `isinstance` check, but unfortunately it seems like just swapping out Itera**tor** for Itera**ble** caused...

Sorry if I'm not understanding? I don't like the global dictionary, so I'm gonna keep this open til I can fix it, but why exactly is it not thread-safe? The...

Spec compliance means it passes the [spec unit tests](https://github.com/mustache/spec). Which to my knowledge I do in every python version 2.6 and above (if I don't, it's a bug and I'll...

Hey, sorry for the long delay before responding, haven't been feeling too well lately! I think this is a nice addition to the mustache spec but, since it isn't standard,...

Hey everyone, Maintaining this library is definitely something that has fallen much lower on my priority list than I, or probably anyone else reading this, wanted it to. I'd love...

I'm pretty sure the expected result should be `(False)(0)(0.0)()()` due to [this test](https://github.com/noahmorrison/chevron/blob/master/test_spec.py#L189) and it's what [mustache.io](https://mustache.github.io/#demo) outputs as well. Am I wrong in thinking that? Or is the list...

I've got a commit that works. basically it passes an is_seq value into the render function when it's doing a sequence. Then when we're inside of a section or an...