sileht / python-jsonpath-rw-ext

Extensions for JSONPath RW
Apache License 2.0
59 stars 19 forks source link

arithmetic operator does not support minus(-) #23

Open truebit opened 5 years ago

truebit commented 5 years ago
>>> jp.match1('$.cow-1', {'cow': 2, 'fish': 'foobar'})
>>> jp.match1('$.cow+-1', {'cow': 2, 'fish': 'foobar'})
1

first one returned None, second one could return correct result 1