Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dbe7cf commit 5ed5c00Copy full SHA for 5ed5c00
tools/refactor.ipynb
@@ -43,6 +43,26 @@
43
"#mrt.perform_replacements()"
44
]
45
},
46
+ {
47
+ "cell_type": "code",
48
+ "execution_count": 4,
49
+ "metadata": {
50
+ "collapsed": true
51
+ },
52
+ "outputs": [],
53
+ "source": [
54
+ "class A(object):\n",
55
+ " \n",
56
+ " def __init__(self, value):\n",
57
+ " self._v = value\n",
58
59
+ " def do(self):\n",
60
+ " return self._v + 1\n",
61
62
+ " def get_v(self):\n",
63
+ " return self._v"
64
+ ]
65
66
{
67
"cell_type": "code",
68
"execution_count": null,
0 commit comments