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 7909c0b commit 78a1218Copy full SHA for 78a1218
README.md
@@ -1710,7 +1710,6 @@ Suggested by @Lucas-C in [this](https://github.com/satwikkansal/wtfpython/issues
1710
1711
1712
```py
1713
-# Name mangling:
1714
class Yo(object):
1715
def __init__(self):
1716
self.__honey = True
@@ -1719,9 +1718,9 @@ class Yo(object):
1719
1718
1720
**Output:**
1721
1722
->>> Yo().bitch()
+>>> Yo().bitch
1723
True
1724
->>> Yo().__honey()
+>>> Yo().__honey
1725
AttributeError: 'Yo' object has no attribute '__honey'
1726
>>> Yo()._Yo__honey
1727
0 commit comments