Mercurial
>
ldcheck
/ annotate
Search:
summary
shortlog
changelog
graph
tags
bookmarks
branches
files
help
file
latest
revisions
annotate
diff
comparison
raw
testsuite.py@eb74680a5e43 (annotated)
testsuite.py
Fri, 19 Jan 2018 13:41:23 +0200
author
Santeri Piippo
date
Fri, 19 Jan 2018 13:41:23 +0200
changeset 12
eb74680a5e43
child 13
12d4ddc4bfd8
permissions
-rw-r--r--
commit work done on test suites...
12
eb74680a5e43
commit work done on test suites...
Santeri Piippo
parents:
diff
changeset
1
def
warning
(
object
,
*
message
):
eb74680a5e43
commit work done on test suites...
Santeri Piippo
parents:
diff
changeset
2
return
{
eb74680a5e43
commit work done on test suites...
Santeri Piippo
parents:
diff
changeset
3
'type'
:
'warning'
,
eb74680a5e43
commit work done on test suites...
Santeri Piippo
parents:
diff
changeset
4
'object'
:
object
,
eb74680a5e43
commit work done on test suites...
Santeri Piippo
parents:
diff
changeset
5
'message'
:
str
.
format
(
*
message
),
eb74680a5e43
commit work done on test suites...
Santeri Piippo
parents:
diff
changeset
6
}