Skip to content

Instantly share code, notes, and snippets.

@travishen
Last active May 17, 2022 12:06
Show Gist options
  • Save travishen/99ab0d69ac3a22d6aba45c88cf1e2fa8 to your computer and use it in GitHub Desktop.
Save travishen/99ab0d69ac3a22d6aba45c88cf1e2fa8 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 5,
"id": "6fa9764b",
"metadata": {},
"outputs": [],
"source": [
"class Example:\n",
" def func(self):\n",
" pass\n",
" \n",
"obj = Example()"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "f037badb",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"function"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"type(Example.func)"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "436d6d46",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"method"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"type(obj.func)"
]
},
{
"cell_type": "markdown",
"id": "07476914",
"metadata": {},
"source": [
"## Every method is non-overriding descriptor, has a `__get__` method"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "8fd94235",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<bound method Example.func of <__main__.Example object at 0x7f69047e3040>>"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"Example.func.__get__(obj)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "357b56d4",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<function __main__.Example.func(self)>"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"Example.func.__get__(None, Example)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment