Michael Overmeyer

Results 154 issues of Michael Overmeyer

Unless I'm mistaken, there is no way that `value` can be an instance of ConfigList or ConfigTree. `ConfigList` is a subclass of `list`, `ConfigTree` is a subclass of `OrderedDict`. There...

Similarly to #95, config_tree.put() also mutates the input parameter. ``` from pyhocon.config_tree import ConfigTree #This code is a parameterized version of the test "test_config_list" value1 = [4, 5] value2 =...

[pyparsing.lineno](https://pythonhosted.org/pyparsing/pyparsing-module.html#lineno) expects the second parameter to be a string. However, in 2 locations within config_parser.py ([here](https://github.com/chimpler/pyhocon/blob/master/pyhocon/config_parser.py#L516), and [here](https://github.com/chimpler/pyhocon/blob/master/pyhocon/config_parser.py#L519)), you set the `instring` parameter for a `ConfigSubstitution` to a boolean instead...

Given the following config: ``` foo: { : bar } ``` And the code: ``` from pyhocon import ConfigFactory config1 = ConfigFactory.parse_file("test.conf") ``` You get an Exception. ``` Traceback (most...

Given the following configuration file, ``` a = Å ``` the following code fails: ``` from pyhocon import ConfigFactory conf = ConfigFactory.parse_file("my_conf_file.conf") conf.get_string('a') ``` with the exception: ``` Traceback (most...

### What are you trying to accomplish? New release to include the bug fixes from #113 and #116. ### What approach did you choose and why? Bumping the version number...

The Git ecosystem has moved away from the default branch name of `master`, towards the name `main`. e.g. All new repos on GitHub/GitLab/Bitbucket now use `main` as the default branch...

Using GitHub's[ issue templates](https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#creating-issue-templates).

As it stands, there are a number of actions needed in order to release a new version of ciso8601 1. Bump the [`VERSION` in `setup.py`](https://github.com/closeio/ciso8601/blob/382ebbc7260f70348b034036c7c2494aa8ebf50e/setup.py#L33) 1. Add the version to...

When `ciso8601` was first created, there were no reasonable alternatives to it. By virtue of being implemented in C, it was simply much faster than Python implementations. However, time have...

question
documentation