victorlei / smop

Small Matlab to Python compiler
MIT License
1.08k stars 409 forks source link

wrong operator priorities #101

Open victorlei opened 7 years ago

victorlei commented 7 years ago

in libermate/badfun.m

if**nargin < 3 | isempty(c), is translated as ` if nargin < logical_or(3,isempty(c)):**` which is wrong