-
The current `json_fn` impl on `nightly` could be much clearer. The various bits could be split into separate methods so it's more obvious what's going on.
There could also be a way to parse just th…
-
### Describe Your Suggestion
I would like to be able to pass in a list of items stored in a text file instead of calling `vpkeditcli` for every item in that text file. Similar to how a response file …
-
The `citationjs` parser needs to allow for more different kinds of commands, mostly argument commands. Arguments seem to be treated the same always: it either takes in a braced block or the first char…
-
## Short description
When running the example `examples/advanced/reconstruct_python.py`, the code fails on `AssertionError` in approx 50% of cases.
```
Traceback (most recent call last):
Fil…
-
I am trying to find the number of dates inside a CSV file with this code:
```
def is_date(val):
count = 0
for v in val:
try:
parse(str(v))
…
-
## Describe the bug
When starting the test, the following error occurs
```
Test suite failed to run
SyntaxError: Identifier expected. (1:10)
> 1 | function () {
| ^
…
-
I'm trying to try out the new configuration file flag interface feature in v0.7.2 but the following simple example does not work:
`guild.yml`:
```yaml
train:
flags-dest: config:flags.yml
…
-
### Description
If type arguments for a converter uses GridLength, then the XAMLC parser returns an error and the project does not build.
Using the class shown here https://learn.microsoft.com/en-…
-
Section 12 of the [POSIX.1-2017](https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap12.html) describes the guidelines to follow for implementing CLI utilities. By no means is this someth…
-
I faced a strange behavior when I was trying to get an implicit variable.
# Steps to Reproduce
```idris
module ImplicitCatchImp
All : (a : i -> Type) -> Type
All a {i} = {j : i} -> a j
infix…