-
gregm added friedrichr to the Python megawidgets project.
2009-10-20 09:24:04 UTC in Python megawidgets
-
Sorry, the Pmw table editing megawidget has not been written yet. Would you like to contribute?.
2008-07-17 11:25:46 UTC in Python megawidgets
-
Woops! You are right. Instead of "\<" and "\>" in regsub (which mean beginning and end of word), re uses "\b" for both. Also, since "\b" is special in a string, the "\" has to be escaped like this: "\\". So the two changed lines are:
text = re.sub('import Pmw\\b', '', text)
text = re.sub('\\bPmw\.', '', text)
2008-03-07 00:29:05 UTC in Python megawidgets
-
The fix to this is fairly simple. In bundlepmw.py change "import regsub" to "import re" and change each of the five occurrences of "regsub.gsub" to "re.sub".
Hopefully this will make it into the next release...
2008-03-06 12:38:40 UTC in Python megawidgets
-
A new release of Pmw is out. This release makes Pmw compatable with
python versions 2.4 and 2.5. It is also the first release by
the new project administrator, Serge Hulne. A big thank you to Serge.
To download Pmw or for more information, see the home page at
http://pmw.sourceforge.net/
If you have any comments, enhancements or new contributions, please
use the public...
2007-08-06 08:48:41 UTC in Python megawidgets
-
Hi Gaurav,
The listbox state option works OK for Tk version 8.4 on Unix. I suggest you upgrade.
Greg.
2007-04-11 11:02:15 UTC in Python megawidgets
-
gregm committed patchset 54 of module Pmw to the Python megawidgets CVS repository, changing 1 files.
2006-05-18 13:05:36 UTC in Python megawidgets
-
Don't jump to conclusions about the problem being "obviously" with Pmw :)
I could not run your scripts because I do not have the "subprocess" module. So for testing, I removed the references to subprocess and replaced "dirlist" with ('a', 'b', 'c).
Both scripts worked as expected. I could select the Test -> Directory List menu item, then click OK in the...
2006-01-16 13:13:19 UTC in Python megawidgets
-
For characters greater than 0x7f, the calls to
isspace() in Modules/structmodule.c can return random
values. For example, on Solaris I got this (incorrect)
output:
>>> import struct
>>> struct.calcsize('10d\xfed')
88
>>>
After changing the three occurrences of
"isspace((int)c)" to "isspace((unsigned char)c)", this
was the (correct) output:
>>> import struct
>>>...
2004-11-23 23:35:52 UTC in Python
-
A new release of Pmw is out. This release makes Pmw compatable with
recent releases of python and Tcl/Tk.
This version of Pmw was tested against python 2.3, Tcl/Tk 8.4.2 and
Blt 2.4z. Except for Blt, all tests pass. Blt seems to be more
flacky than usual, with core dumps occuring in the Graph code. Since
this is a problem in Blt (not Pmw), the Blt test script has been
removed from...
2003-08-05 14:13:50 UTC in Python megawidgets