New GitHub issue #118893 from AlexWaygood:<br>

<hr>

<pre>
 We've discovered that if you manually type out a condition that evaluates to `False` in the new REPL, `False` is printed as the result, as expected...

```pycon
>>> (3, 13, 0, "final") < (3, 13, 0, "beta")
False
```

...but that if you copy and paste this condition into the REPL, nothing is printed (implying that the condition evaluates to `None`:

```pycon
>>> (3, 13, 0, "final") < (3, 13, 0, "beta")
>>> 
```

Thanks @Eclips4 for realising that the difference in behaviour here was due to copying-and-pasting the condition rather than typing it out!

_Originally posted by @AlexWaygood in https://github.com/python/cpython/issues/111201#issuecomment-2102541362_
 
</pre>

<hr>

<a href="https://github.com/python/cpython/issues/118893">View on GitHub</a>
<p>Labels: </p>
<p>Assignee: </p>