Matthew Rowles

Results 8 issues of Matthew Rowles

I'm writing a library for some scientific data management, and I have a need to parse strings of the sort `"+12.345e-02(13)"`**, which contains the value `0.12345` and the error `0.00013`....

`program_name` is taken from the zeroth argument. If the program is called with a full (or partial) path, then this ends up in `program_name`, and then into the help text...

I think I've found a bug in `QuotedString` where `multiline=True` and there is a newline in the quote sequence. The newline is ignored. ```python ParserElement.set_default_whitespace_chars("") newlinequote = QuotedString("\n;", multiline=True) newlinequote.search_string("lsjdf...

Having a `\r` in a string which is being parsed resets the output string in the debug output, overwriting what was already there. The parsing is correct, just the explanatory...

Does cctbx/iotbx support multi-block CIF files? in particular, powder CIF files? We're doing [some development](https://github.com/COMCIFS/Powder_Dictionary) and a [question has arisen re deprecation](https://github.com/COMCIFS/Powder_Dictionary/issues/56) of some data tiems, and we trying to...

Hi all Is there an ability to raise an exception straight from the grammar? ``` grammar = """ datablockheading = DATA blockframecode DATA = "data_" blockframecode = nonblankchar+ / RAISE_ERROR...

I've just found this library, and I'm trying to implement parsimonious to at least tokenise my input files. There is a grammar I'd like to implement, but the matching seems...

When writing an array with `writedlm` on Windows, lines are not terminated with `/r/n`. ``` jl julia> rnd = rand(2,2) 2x2 Array{Float64,2}: 0.417898 0.534031 0.593108 0.909771 julia> writedlm("out.txt", rnd) ```...

windows