# Repro: ``` $ polyglot --jvm --shell GraalVM MultiLanguage Shell 19.3.0 Python version 3.7.4 Ruby version 2.6.2 ruby> if nil; puts "No!!" end nil ruby> if Polyglot.eval('python', 'None'); puts "No!!!" end No!!! # not expected! nil ruby> Polyglot.eval('python', 'None').nil? true ```