<?xml version="1.0" encoding="UTF-8" ?><rss version="2.0"><channel><title>Blog Entries by &quot;Philip Trauner&quot; | SpaceHey</title><link>https://blog.spacehey.com/user?id=369</link><description>The most recent Blog Entries by the User &quot;Philip Trauner&quot; on SpaceHey</description><item><title>Elvis</title><link>https://blog.spacehey.com/entry?id=63</link><guid>https://blog.spacehey.com/entry?id=63</guid><description></description><pubDate>Sun, 29 Nov 2020 18:01:02 +0000</pubDate></item><item><title>Python Quirks: Implicit Return</title><link>https://blog.spacehey.com/entry?id=58</link><guid>https://blog.spacehey.com/entry?id=58</guid><description>In Python, functions always have to return something. &gt;&gt;&gt; def foo(): ... pass ... &gt;&gt;&gt; print(foo()) None To ensure that this is the case, instructions that are equivalent to a return None statement are appended to the inner-most code block by the bytecode compiler if no return statement is present. &gt;&gt;&gt; from dis import dis &gt;&gt;&gt; dis(foo) 2 0 LOAD_CONST 0 (</description><pubDate>Sun, 29 Nov 2020 17:42:23 +0000</pubDate></item></channel></rss>