Welcome, guest | Sign In | My Account | Store | Cart
#!/usr/bin/python
# -*- coding: utf8 -*-

# import mymodule
# ^^^^^^^^^^^^^^^ <- no need to import module
#
# for more info, please see the references - this is just an ugly demo

def bar(d):
    usleep(500000) # there isn't function by this name in std Python
    print d
    print type(d)
    return int(d['a'] + d['b'])

Diff to Previous Revision

--- revision 1 2015-10-15 15:44:01
+++ revision 2 2015-10-16 12:10:58
@@ -3,6 +3,8 @@
 
 # import mymodule
 # ^^^^^^^^^^^^^^^ <- no need to import module
+#
+# for more info, please see the references - this is just an ugly demo
 
 def bar(d):
     usleep(500000) # there isn't function by this name in std Python

History