mirror of
https://github.com/satwikkansal/wtfpython
synced 2024-11-22 11:04:25 +01:00
Minor corrections in previous example
This commit is contained in:
parent
7909c0b1ad
commit
78a1218dbd
5
README.md
vendored
5
README.md
vendored
@ -1710,7 +1710,6 @@ Suggested by @Lucas-C in [this](https://github.com/satwikkansal/wtfpython/issues
|
|||||||
|
|
||||||
|
|
||||||
```py
|
```py
|
||||||
# Name mangling:
|
|
||||||
class Yo(object):
|
class Yo(object):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.__honey = True
|
self.__honey = True
|
||||||
@ -1719,9 +1718,9 @@ class Yo(object):
|
|||||||
|
|
||||||
**Output:**
|
**Output:**
|
||||||
```py
|
```py
|
||||||
>>> Yo().bitch()
|
>>> Yo().bitch
|
||||||
True
|
True
|
||||||
>>> Yo().__honey()
|
>>> Yo().__honey
|
||||||
AttributeError: 'Yo' object has no attribute '__honey'
|
AttributeError: 'Yo' object has no attribute '__honey'
|
||||||
>>> Yo()._Yo__honey
|
>>> Yo()._Yo__honey
|
||||||
True
|
True
|
||||||
|
Loading…
Reference in New Issue
Block a user