Move a whole bunch of private modules to be underscore prefixed · openSUSE-Python/html5lib-python@c4dd677 · GitHub
Skip to content

Commit c4dd677

Browse files
committed
Move a whole bunch of private modules to be underscore prefixed
This moves: html5lib.ihatexml -> html5lib._ihatexml html5lib.inputstream -> html5lib._inputstream html5lib.tokenizer -> html5lib._tokenizer html5lib.trie -> html5lib._trie html5lib.utils -> html5lib._utils
1 parent 8db5828 commit c4dd677

21 files changed

Lines changed: 82 additions & 82 deletions
Lines changed: 5 additions & 5 deletions
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
from .constants import tokenTypes, tagTokenTypes
1212
from .constants import replacementCharacters
1313

14-
from .inputstream import HTMLInputStream
14+
from ._inputstream import HTMLInputStream
1515

16-
from .trie import Trie
16+
from ._trie import Trie
1717

1818
entitiesTrie = Trie(entities)
1919

File renamed without changes.

html5lib/html5parser.py

Lines changed: 45 additions & 45 deletions
Large diffs are not rendered by default.

html5lib/serializer.py

Lines changed: 4 additions & 4 deletions

0 commit comments

Comments
 (0)