Sep Dehpour

Results 24 issues of 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...

enhancement

For example the `"""` in a block of python code leaks out: ![Screenshot from 2019-12-23 16-18-21](https://user-images.githubusercontent.com/2314797/71386059-0eb59e00-25a0-11ea-8f66-b1746418f6d2.png)

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...

type: bug
component: decoder
syntax: arrays

```py item = """ a = [ [ ",", "" ] ] """ toml.loads(item) ``` raises exception: ``` 587 elif v[0] == '"': 588 testv = v[1:].split('"') --> 589 if...

type: bug
component: decoder
syntax: strings
syntax: arrays

According to https://stackoverflow.com/a/39219783/1497443 the `hmset` command does not work with empty dictionaries.

- [x] removing unnecessary print

- [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...