From f464b1ba398b05301db39f7b91157da0afe64deb Mon Sep 17 00:00:00 2001 From: Sarvesh MD <76893756+SarveshMD@users.noreply.github.com> Date: Sun, 25 Jul 2021 18:41:44 +0530 Subject: [PATCH] Update battest.py Add decorator test `@classmethod` and fixed spellings. --- .../highlighted/Python/battest.py | 19 ++++++++++++------- tests/syntax-tests/source/Python/battest.py | 19 ++++++++++++------- 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/tests/syntax-tests/highlighted/Python/battest.py b/tests/syntax-tests/highlighted/Python/battest.py index 863f22a6..71180933 100644 --- a/tests/syntax-tests/highlighted/Python/battest.py +++ b/tests/syntax-tests/highlighted/Python/battest.py @@ -8,7 +8,7 @@ h2 = 4 # this is a comment """this is also a comment""" -# Import testt +# Import test # class test @@ -16,14 +16,19 @@ class Hello:  def __init__(self, x):  self.name = x - +   def selfprint(self):  print("hello my name is ", self.name)  def testprint(self):  print(1*2, 2+3, 4 % 5, 8-4, 9/4, 23//4) - +# Decorators test +class Decorators: + @classmethod + def decoratorsTest(self): + pass +  H1 = Hello("john") H1.selfprint() H1.testprint() @@ -37,8 +42,8 @@ print(a[2]) print(a[2:]) -# dictioary test -# copied from w3school example +# dictionary test +# copied from w3schools example myfamily = {  "child1": { @@ -55,7 +60,7 @@  } } -# touple test +# tuple test testTuple = ("one", 2, "3") print(testTuple) @@ -70,7 +75,7 @@ formattest = "teststring is ={}".format(5) -# lamda test +# lambda test def x2(n): diff --git a/tests/syntax-tests/source/Python/battest.py b/tests/syntax-tests/source/Python/battest.py index 92be0ef6..b0ce3db0 100644 --- a/tests/syntax-tests/source/Python/battest.py +++ b/tests/syntax-tests/source/Python/battest.py @@ -8,7 +8,7 @@ from time import * h2 = 4 # this is a comment """this is also a comment""" -# Import testt +# Import test # class test @@ -16,14 +16,19 @@ h2 = 4 # this is a comment class Hello: def __init__(self, x): self.name = x - + def selfprint(self): print("hello my name is ", self.name) def testprint(self): print(1*2, 2+3, 4 % 5, 8-4, 9/4, 23//4) - +# Decorators test +class Decorators: + @classmethod + def decoratorsTest(self): + pass + H1 = Hello("john") H1.selfprint() H1.testprint() @@ -37,8 +42,8 @@ print(a[:4]) print(a[2]) print(a[2:]) -# dictioary test -# copied from w3school example +# dictionary test +# copied from w3schools example myfamily = { "child1": { @@ -55,7 +60,7 @@ myfamily = { } } -# touple test +# tuple test testTuple = ("one", 2, "3") print(testTuple) @@ -70,7 +75,7 @@ bye""" formattest = "teststring is ={}".format(5) -# lamda test +# lambda test def x2(n):