Skip to content

Commit b184cbc

Browse files
committed
git Merge branch 'issue/7'
2 parents bd27a29 + 8873b31 commit b184cbc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

notebooks/PythonObjects.ipynb

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1315,7 +1315,7 @@
13151315
},
13161316
{
13171317
"cell_type": "code",
1318-
"execution_count": 41,
1318+
"execution_count": null,
13191319
"id": "4e8f863a",
13201320
"metadata": {},
13211321
"outputs": [],
@@ -1327,7 +1327,7 @@
13271327
"\n",
13281328
" # singleton pattern\n",
13291329
" def __new__(cls, *args, **kwargs):\n",
1330-
" # we don't care about args and kwargs within __new__\n",
1330+
" # we don't care about (a, b) so use args and kwargs within __new__\n",
13311331
" # not providing them will create syntax error because __init__ is defined with two arguments \n",
13321332
" if not cls._instance:\n",
13331333
" cls._instance = super().__new__(cls)\n",
@@ -1346,7 +1346,7 @@
13461346
},
13471347
{
13481348
"cell_type": "code",
1349-
"execution_count": 42,
1349+
"execution_count": 52,
13501350
"id": "a764ca44",
13511351
"metadata": {},
13521352
"outputs": [],
@@ -1357,7 +1357,7 @@
13571357
},
13581358
{
13591359
"cell_type": "code",
1360-
"execution_count": 43,
1360+
"execution_count": 53,
13611361
"id": "b9b63da3",
13621362
"metadata": {},
13631363
"outputs": [
@@ -1367,7 +1367,7 @@
13671367
"True"
13681368
]
13691369
},
1370-
"execution_count": 43,
1370+
"execution_count": 53,
13711371
"metadata": {},
13721372
"output_type": "execute_result"
13731373
}
@@ -1378,7 +1378,7 @@
13781378
},
13791379
{
13801380
"cell_type": "code",
1381-
"execution_count": 44,
1381+
"execution_count": 54,
13821382
"id": "b302bf1f",
13831383
"metadata": {},
13841384
"outputs": [
@@ -1398,7 +1398,7 @@
13981398
},
13991399
{
14001400
"cell_type": "code",
1401-
"execution_count": 45,
1401+
"execution_count": 55,
14021402
"id": "ad9b3855",
14031403
"metadata": {},
14041404
"outputs": [
@@ -1408,7 +1408,7 @@
14081408
"True"
14091409
]
14101410
},
1411-
"execution_count": 45,
1411+
"execution_count": 55,
14121412
"metadata": {},
14131413
"output_type": "execute_result"
14141414
}

0 commit comments

Comments
 (0)