diff --git a/README.md b/README.md index c935f2b..ebea961 100644 --- a/README.md +++ b/README.md @@ -2415,7 +2415,6 @@ def a (): return >>> None - ``` And @@ -2452,19 +2451,16 @@ Disassembly of ", line 5>: 2 RETURN_VALUE ``` -An empty return is exactly the same as return None and functions without any return +An empty return is exactly the same as return None and functions without any explicit return will always return None regardless of the operations, therefore - - ``` def sum(a, b): global C c = a + b >>> None - ```