Ben Harshbarger
Ben Harshbarger
Recently I was trying to figure out the best way to handle a missing command while using ``Subprocess``, and rather quickly ran into some issues. These were encountered while running...
When ``mason publish`` is executed, a tag is neither created nor pushed to a remote repository for the package. We either need to: a) treat this as a bug that...
Updates the first line of documentation to fit into the rendered module index list. Also adds a link to the IO module's high-level serialization documentation.
This PR contains a variety of improvements encountered while working towards resolution of ranges (in support of param loops, not included in this PR), which necessitated the resolution of c_ptr...
Consider the following program: ```chpl proc main() { var a = (1, 2, 3); var (x,y,z): int = a; } ``` This gives the error: ``` baz.chpl:1: In function 'main':...
Consider the following program: ```chpl record pair { type fst; type snd; } type x = pair(int, ?); type y = x(fst=bool); writeln(y : string); // produces pair(bool) ``` ``x``...
The following program produces a "used before defined" error in production: ```chpl proc foo() { x = 1; // error here } var x : int = 0; proc main()...