1
0
mirror of https://github.com/gryf/ebook-converter.git synced 2026-03-23 02:43:35 +01:00

Next portion of logging adapt.

This commit is contained in:
2021-06-24 19:42:51 +02:00
parent 84abd62a61
commit 6dfcaea2dd
20 changed files with 105 additions and 122 deletions

View File

@@ -1,16 +1,17 @@
import unittest, sys, argparse
import argparse
import sys
import unittest
from lxml import etree, html
from lxml import etree
from lxml import html
from ebook_converter.css_selectors.errors import SelectorSyntaxError, ExpressionError
from ebook_converter.css_selectors.parser import tokenize, parse
from ebook_converter.css_selectors.errors import ExpressionError
from ebook_converter.css_selectors.errors import SelectorSyntaxError
from ebook_converter.css_selectors.parser import parse
from ebook_converter.css_selectors.parser import tokenize
from ebook_converter.css_selectors.select import Select
__license__ = 'GPL v3'
__copyright__ = '2015, Kovid Goyal <kovid at kovidgoyal.net>'
class TestCSSSelectors(unittest.TestCase):
# Test data {{{