diff options
Diffstat (limited to 'source')
-rw-r--r-- | source/blog/2015-12-27-lesson-on-magic-method-access-of-python-new-style-classes-from-my-failed-python3-port-of-tomorrow.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blog/2015-12-27-lesson-on-magic-method-access-of-python-new-style-classes-from-my-failed-python3-port-of-tomorrow.md b/source/blog/2015-12-27-lesson-on-magic-method-access-of-python-new-style-classes-from-my-failed-python3-port-of-tomorrow.md index 01b7e2c4..a64ce3d3 100644 --- a/source/blog/2015-12-27-lesson-on-magic-method-access-of-python-new-style-classes-from-my-failed-python3-port-of-tomorrow.md +++ b/source/blog/2015-12-27-lesson-on-magic-method-access-of-python-new-style-classes-from-my-failed-python3-port-of-tomorrow.md @@ -45,7 +45,7 @@ Accessing '__str__' '0' ``` -In addition, here's what happens if you try to let "pass through" a function: +In addition, here's what happens if you try to "pass through" a function: ```python >>> def f(): return True |