mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Remove undisclosed imports (from xxx import *)
This was the last example in this directory.
This commit is contained in:
parent
b80ccaa417
commit
160ac7242e
@ -17,9 +17,8 @@
|
|||||||
|
|
||||||
"This modules tests the auxiliary functions for lyx2lyx."
|
"This modules tests the auxiliary functions for lyx2lyx."
|
||||||
|
|
||||||
from lyx2lyx_tools import *
|
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
|
from lyx2lyx_tools import put_cmd_in_ert, latex_length
|
||||||
|
|
||||||
|
|
||||||
class TestParserTools(unittest.TestCase):
|
class TestParserTools(unittest.TestCase):
|
||||||
|
@ -17,9 +17,24 @@
|
|||||||
|
|
||||||
"This modules tests the functions used to help parse lines."
|
"This modules tests the functions used to help parse lines."
|
||||||
|
|
||||||
from parser_tools import *
|
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
|
from parser_tools import (
|
||||||
|
check_token,
|
||||||
|
is_nonempty_line,
|
||||||
|
find_token,
|
||||||
|
find_substring,
|
||||||
|
find_re,
|
||||||
|
re,
|
||||||
|
find_complete_lines,
|
||||||
|
find_across_lines,
|
||||||
|
find_tokens,
|
||||||
|
get_value,
|
||||||
|
get_bool_value,
|
||||||
|
del_complete_lines,
|
||||||
|
del_value,
|
||||||
|
set_bool_value
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
lines = r"""
|
lines = r"""
|
||||||
\begin_layout Standard
|
\begin_layout Standard
|
||||||
|
Loading…
Reference in New Issue
Block a user