Sep Dehpour
Sep Dehpour
When opening relatively big markdown files, like over 300kb, Markdown freezes. I pinpointed it to Pandoc. So basically I open the big markdown file, markdown freezes, then I kill the...
We already have ignore significant digits but what we need to add is a threshold for numerics so that it ignores the diff if it is within the threshold. For...
For example the `"""` in a block of python code leaks out: 
Either fix the CircleCi script or switch to Travis.
toml==0.10.1 ``` >>> import toml >>> toml_string = """ ... a=[',', ''] ... """ >>> toml.loads(toml_string) {'a': ['', '', '']} ``` So the result's list's length is 3 instead of...
```py item = """ a = [ [ ",", "" ] ] """ toml.loads(item) ``` raises exception: ``` 587 elif v[0] == '"': 588 testv = v[1:].split('"') --> 589 if...
According to https://stackoverflow.com/a/39219783/1497443 the `hmset` command does not work with empty dictionaries.
- [x] removing unnecessary print
6.7.2
- [x] fixes the issue with hashing `datetime.date` objects where it treated them as numbers instead of dates.
## BUG/PROBLEM REPORT / FEATURE REQUEST Hello! If I pass `restricted_globals=dict(__builtins__=safe_builtins)`, my function does not compile. I don't see any errors that it was not compiled. How do I know...