@shiracamus
@shiracamus
It seems that the Python interpreter uses cached numeric literals on a per-compile basis. ```py >>> def a(b=3000): ... c = 3000 ... print(id(b), id(c), b is c) ... >>>...
The same result is obtained in JavaScript. ```js > [0, 0, 0]
> It's all explained by the operation precedence Hmmmm ```py >>> 1 + (-(+(-(+1)))) # 1 + 1 2 >>> 1 + (+(+(+(+(+1))))) # 1 + 1 2 >>> 1...
> I'm not too sure what to make of the comment "Hmmmmm" though. Its meaning is ``I try using parentheses to check the priority.''
I have added that logic and confirmed that there is no error. ```sh:command set -f; echo -n > /tmp/cron_jobs; for user in $(getent passwd | cut -f1 -d:); do $(crontab...