summaryrefslogtreecommitdiff
path: root/Examples/python/multimap
diff options
context:
space:
mode:
authorJon Schlueter <jon.schlueter@gmail.com>2015-05-08 08:33:29 -0400
committerJon Schlueter <jon.schlueter@gmail.com>2015-05-08 08:46:06 -0400
commit77707154574f1852f56ed552bab832249c80bbfc (patch)
tree658af0e04204256026ce6bb9f42a09ccbaeefbbc /Examples/python/multimap
parent9086eb351ce1d158d9b66d707d3fcb48e447b382 (diff)
downloadswig-77707154574f1852f56ed552bab832249c80bbfc.tar.gz
autopep8 cleanup of Examples/python whitespace
automated cleanup only of the Examples/python example code
Diffstat (limited to 'Examples/python/multimap')
-rw-r--r--Examples/python/multimap/runme.py15
1 files changed, 4 insertions, 11 deletions
diff --git a/Examples/python/multimap/runme.py b/Examples/python/multimap/runme.py
index f996ab3ae..ad693b73a 100644
--- a/Examples/python/multimap/runme.py
+++ b/Examples/python/multimap/runme.py
@@ -1,16 +1,16 @@
# file: runme.py
-import example
+import example
# Call our gcd() function
x = 42
y = 105
-g = example.gcd(x,y)
-print "The gcd of %d and %d is %d" % (x,y,g)
+g = example.gcd(x, y)
+print "The gcd of %d and %d is %d" % (x, y, g)
# Call the gcdmain() function
-example.gcdmain(["gcdmain","42","105"])
+example.gcdmain(["gcdmain", "42", "105"])
# Call the count function
print example.count("Hello World", "l")
@@ -18,10 +18,3 @@ print example.count("Hello World", "l")
# Call the capitalize function
print example.capitalize("hello world")
-
-
-
-
-
-
-