Skip to content

Commit

Permalink
adjust comments (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd authored Dec 23, 2022
1 parent 21b6ab6 commit 086ec13
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 35 deletions.
4 changes: 2 additions & 2 deletions comtypes/test/test_DISPPARAMS.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def test(self):

self.assertEqual(dp.rgvarg[0].value, 42)
# these fail:
## self.failUnlessEqual(dp.rgvarg[1].value, "spam")
## self.failUnlessEqual(dp.rgvarg[2].value, "foo")
# self.failUnlessEqual(dp.rgvarg[1].value, "spam")
# self.failUnlessEqual(dp.rgvarg[2].value, "foo")

def X_test_2(self):
# basically the same test as above
Expand Down
8 changes: 4 additions & 4 deletions comtypes/test/test_avmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ def test(self):
self.assertEqual(devs[1].Description, "Avmc2")
self.assertEqual(devs[1].SerialNumber, "5678")

## # Leaks... where?
## def doit():
## avmc.FindAllAvmc()
## self.check_leaks(doit)
# # Leaks... where?
# def doit():
# avmc.FindAllAvmc()
# self.check_leaks(doit)

def check_leaks(self, func, limit=0):
bytes = find_memleak(func)
Expand Down
14 changes: 7 additions & 7 deletions comtypes/test/test_casesensitivity.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ def test(self):
# IWebBrowserApp(IWebBrowser)
# IWebBrowser2(IWebBrowserApp)

## print iem.IWebBrowser2.mro()
# print iem.IWebBrowser2.mro()

self.assertTrue(issubclass(iem.IWebBrowser2, iem.IWebBrowserApp))
self.assertTrue(issubclass(iem.IWebBrowserApp, iem.IWebBrowser))

## print sorted(iem.IWebBrowser.__map_case__.keys())
## print "=" * 42
## print sorted(iem.IWebBrowserApp.__map_case__.keys())
## print "=" * 42
## print sorted(iem.IWebBrowser2.__map_case__.keys())
## print "=" * 42
# print sorted(iem.IWebBrowser.__map_case__.keys())
# print "=" * 42
# print sorted(iem.IWebBrowserApp.__map_case__.keys())
# print "=" * 42
# print sorted(iem.IWebBrowser2.__map_case__.keys())
# print "=" * 42

# names in the base class __map_case__ must also appear in the
# subclass.
Expand Down
4 changes: 2 additions & 2 deletions comtypes/test/test_dispinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ def test_win32com_dyndispatch(self):
self.assertEqual(d.Name, "foo bar")

# fails. Why?
## d.name = "blah"
## self.assertEqual(d.Name, "blah")
# d.name = "blah"
# self.assertEqual(d.Name, "blah")

def test_comtypes(self):
from comtypes.client import CreateObject
Expand Down
12 changes: 6 additions & 6 deletions comtypes/test/test_ie.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,28 @@ def __init__(self):

# some DWebBrowserEvents
def OnVisible(self, this, *args):
## print "OnVisible", args
# print "OnVisible", args
self._events.append("OnVisible")

def BeforeNavigate(self, this, *args):
## print "BeforeNavigate", args
# print "BeforeNavigate", args
self._events.append("BeforeNavigate")

def NavigateComplete(self, this, *args):
## print "NavigateComplete", args
# print "NavigateComplete", args
self._events.append("NavigateComplete")

# some DWebBrowserEvents2
def BeforeNavigate2(self, this, *args):
## print "BeforeNavigate2", args
# print "BeforeNavigate2", args
self._events.append("BeforeNavigate2")

def NavigateComplete2(self, this, *args):
## print "NavigateComplete2", args
# print "NavigateComplete2", args
self._events.append("NavigateComplete2")

def DocumentComplete(self, this, *args):
## print "DocumentComplete", args
# print "DocumentComplete", args
self._events.append("DocumentComplete")


Expand Down
18 changes: 9 additions & 9 deletions comtypes/test/test_outparam.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,23 +56,23 @@ def comstring(text, typ=c_wchar_p):
class Test(unittest.TestCase):
@unittest.skip("This fails for reasons I don't understand yet")
def test_c_char(self):
## ptr = c_wchar_p("abc")
## self.failUnlessEqual(ptr.__ctypes_from_outparam__(),
## "abc")
# ptr = c_wchar_p("abc")
# self.failUnlessEqual(ptr.__ctypes_from_outparam__(),
# "abc")

## p = BSTR("foo bar spam")
# p = BSTR("foo bar spam")

x = comstring("Hello, World")
y = comstring("foo bar")
z = comstring("spam, spam, and spam")

## (x.__ctypes_from_outparam__(), x.__ctypes_from_outparam__())
# (x.__ctypes_from_outparam__(), x.__ctypes_from_outparam__())
print((x.__ctypes_from_outparam__(), None)) #x.__ctypes_from_outparam__())

## print comstring("Hello, World", c_wchar_p).__ctypes_from_outparam__()
## print comstring("Hello, World", c_wchar_p).__ctypes_from_outparam__()
## print comstring("Hello, World", c_wchar_p).__ctypes_from_outparam__()
## print comstring("Hello, World", c_wchar_p).__ctypes_from_outparam__()
# print comstring("Hello, World", c_wchar_p).__ctypes_from_outparam__()
# print comstring("Hello, World", c_wchar_p).__ctypes_from_outparam__()
# print comstring("Hello, World", c_wchar_p).__ctypes_from_outparam__()
# print comstring("Hello, World", c_wchar_p).__ctypes_from_outparam__()

if __name__ == "__main__":
unittest.main()
4 changes: 2 additions & 2 deletions comtypes/test/test_urlhistory.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ def test_creation(self):
hist = CreateObject(urlhistLib.UrlHistory)
for x in hist.EnumURLS():
x.pwcsUrl, x.pwcsTitle
## print (x.pwcsUrl, x.pwcsTitle)
## print x
# print (x.pwcsUrl, x.pwcsTitle)
# print x
def doit():
for x in hist.EnumURLs():
pass
Expand Down
4 changes: 2 additions & 2 deletions comtypes/test/test_variant.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def test_int(self):

################################################################
def run_test(rep, msg, func=None, previous={}, results={}):
## items = [None] * rep
# items = [None] * rep
if func is None:
locals = sys._getframe(1).f_locals
func = eval("lambda: %s" % msg, locals)
Expand Down Expand Up @@ -303,7 +303,7 @@ def check_perf(rep=20000):
d += run_test(rep, "VARIANT([42,]).value", previous=previous, results=results)

print("Average duration %.1f%%" % (d / 10))
## cPickle.dump(results, open("result.pickle", "wb"))
# cPickle.dump(results, open("result.pickle", "wb"))

if __name__ == '__main__':
try:
Expand Down
2 changes: 1 addition & 1 deletion comtypes/test/test_wmi.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_wmi(self):
self.assertTrue(isinstance(prop.Name, base_text_type))
prop.Value
result[prop.Name] = prop.Value
## print "\t", (prop.Name, prop.Value)
# print "\t", (prop.Name, prop.Value)
self.assertEqual(len(item.Properties_), item.Properties_.Count)
self.assertEqual(len(item.Properties_), len(result))
self.assertTrue(isinstance(item.Properties_["Description"].Value, text_type))
Expand Down

0 comments on commit 086ec13

Please sign in to comment.