From: Robin Dunn Date: Wed, 21 Feb 2001 21:12:10 +0000 (+0000) Subject: some little fixes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7a8b1590d52fe739111412aff319d016a13260c4 some little fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9407 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/About.py b/wxPython/demo/About.py index ffa8c3785d..63a727254f 100644 --- a/wxPython/demo/About.py +++ b/wxPython/demo/About.py @@ -29,7 +29,7 @@ sit back and enjoy. Be sure to take a peek at the source code for each demo item so you can learn how to use the classes yourself.

wxPython is brought to you by Robin Dunn and
-Total Control Software, Copyright (c) 1997-2000.

+Total Control Software, Copyright (c) 1997-2001.

Please see license.txt for licensing information. diff --git a/wxPython/src/gtk/misc.py b/wxPython/src/gtk/misc.py index cef32c447f..d3d5336220 100644 --- a/wxPython/src/gtk/misc.py +++ b/wxPython/src/gtk/misc.py @@ -60,7 +60,7 @@ class wxSizePtr : def __str__(self): return str(self.asTuple()) def __repr__(self): return str(self.asTuple()) - def __len__(self): return len(self.asTuple() + def __len__(self): return len(self.asTuple()) def __getitem__(self, index): return self.asTuple()[index] def __setitem__(self, index, val): if index == 0: self.width = val @@ -118,7 +118,7 @@ class wxRealPointPtr : def __str__(self): return str(self.asTuple()) def __repr__(self): return str(self.asTuple()) - def __len__(self): return len(self.asTuple() + def __len__(self): return len(self.asTuple()) def __getitem__(self, index): return self.asTuple()[index] def __setitem__(self, index, val): if index == 0: self.width = val @@ -176,7 +176,7 @@ class wxPointPtr : def __str__(self): return str(self.asTuple()) def __repr__(self): return str(self.asTuple()) - def __len__(self): return len(self.asTuple() + def __len__(self): return len(self.asTuple()) def __getitem__(self, index): return self.asTuple()[index] def __setitem__(self, index, val): if index == 0: self.x = val @@ -299,7 +299,7 @@ class wxRectPtr : def __str__(self): return str(self.asTuple()) def __repr__(self): return str(self.asTuple()) - def __len__(self): return len(self.asTuple() + def __len__(self): return len(self.asTuple()) def __getitem__(self, index): return self.asTuple()[index] def __setitem__(self, index, val): if index == 0: self.x = val