vim/sadness/bike/ide-integration/test/scrap.py @ f0d5c7c0f700

vim: replace camelcasemappings with others to unshadow stuff
author Steve Losh <steve@stevelosh.com>
date Fri, 10 Dec 2010 09:55:26 -0500
parents cfd5d659d737
children (none)
class MyClass:
    def myMethod(self, foo):
        pass

a = MyClass()

a.myMethod()


class AnotherClass:
    def myMethod(self,foo):
        pass

def testFunction():
    print "hello"


print "hello"