repo.or.cz
/
pyyaml
/
python3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Some renaming.
[pyyaml/python3.git]
/
tests
/
test_yaml.py
blob
f391a50b7e811525ce72593cf8c4c988e3e8b74f
1
2
import
unittest
3
4
from
test_marker
import
*
5
from
test_reader
import
*
6
from
test_canonical
import
*
7
from
test_tokens
import
*
8
from
test_structure
import
*
9
10
def
main
(
module
=
'__main__'
):
11
unittest
.
main
(
module
)
12
13
if
__name__
==
'__main__'
:
14
main
()
15