Jeremy McMillan

Results 8 issues of Jeremy McMillan

Convention over configuration: If a zone is defined in a pillar, I want the salt states to ensure it is declared in the conf file and also the records are...

```Python '{0:a}'.format(DataSize('14796MB')) >>> '13.779849GiB' '{0:B}'.format(DataSize('14796MB')) >>> '14796000000EB' ``` should look more like ```Python '{0:B}'.format(DataSize('14796MB')) >>> '14796000000B' ```

``` >>> DataSize(4836071272) >>> Traceback (most recent call last): File "", line 1, in File "/opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/datasize/__datasize__.py", line 97, in __new__ raw = spec[:] TypeError: 'int' object is not subscriptable ```

http://matplotlib.org/api/ticker_api.html#matplotlib.ticker.FuncFormatter

This ``` >>> '{}'.format(DataSize(1)) >>> '1B ' ``` should work more like ``` >>> '{}'.format(DataSize(1)) >>> '1B' ```

DataSize can produce strings like "1.47MiB" by format strings like '{:.2MiB}' but there is no way to specify that it should print the slightly prettier "1.47 MiB" with a space...

Accommodate multigraph DAG by introducing a dependency_type keyword argument on several methods. Internally, if the dependency_type is None (by default), the representation of graph edges remains the same. If the...

### Description nimble build tries to download a resource from https://github... URL, but can't because it fails to validate the cert because ```No SSL/TLS CA certificates found``` ### Nim Version...