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 cb3062e commit dc14ab1Copy full SHA for dc14ab1
1 file changed
Lib/sgmllib.py
@@ -61,6 +61,7 @@ def __init__(self, verbose=0):
61
62
def reset(self):
63
"""Reset this instance. Loses all unprocessed data."""
64
+ self.__starttag_text = None
65
self.rawdata = ''
66
self.stack = []
67
self.lasttag = '???'
@@ -221,7 +222,6 @@ def parse_pi(self, i):
221
222
j = match.end(0)
223
return j-i
224
- __starttag_text = None
225
def get_starttag_text(self):
226
return self.__starttag_text
227
0 commit comments