diff --git a/.results.json b/.results.json new file mode 100644 index 0000000..fc35e3d --- /dev/null +++ b/.results.json @@ -0,0 +1 @@ +{"stats": {"passes": 1, "skipped": 0, "encoding": "UTF-8", "errors": 0, "failures": 0, "total": 1}, "results": [{"classname": "tests.test_solution:TestSolution", "type": "success", "name": "test_solution", "time": 0.0001399517059326172}]} \ No newline at end of file diff --git a/practice.py b/practice.py index e69de29..1d34bc8 100644 --- a/practice.py +++ b/practice.py @@ -0,0 +1,19 @@ +'''a = "hello world" +print a''' + +n = "sanket bhatt" + +def myname(a): + """ + here goes my function doc + """ + n = "bhatt" + print "my name is "+a+n + +myname("asdasd") +n = "sanket" +myname(n) +print myname.__doc__ +#print('"'*50) +#print help(myname) +print "संकेत" diff --git a/tests/__init__.pyc b/tests/__init__.pyc new file mode 100644 index 0000000..7a8725d Binary files /dev/null and b/tests/__init__.pyc differ diff --git a/tests/test_solution.pyc b/tests/test_solution.pyc new file mode 100644 index 0000000..519ebf8 Binary files /dev/null and b/tests/test_solution.pyc differ