-
On rev. 0.6.3:
- create a notebook
- add pages in Properties->Widget->Tabs
- remove pages in the Tree view
- design view and Properties->Widget->Tabs are not updated; errors when viewing the dialog and when trying to add/remove pages using Properties->Widget->Tabs.
2009-05-24 13:18:31 UTC in wxGlade
-
On rev. 0.6.3:
- create frame
- create notebook in the frame's sizer
- try to create a grid in the notebook's page
This does not work, unless a sizer is first added.
Under certain conditions (adding notebook pages and then removing it from the tree view) it works, though.
2009-05-24 13:14:32 UTC in wxGlade
-
When a RadioButton that is already selected is being
clicked on again, there's no longer a new
EVENT_RADIOBUTTON.
(I've been using this to allow de-selection of this
item again.)
This used to work with wxPython 2.4.2.4, but works no
longer with e.g. 2.5.2.8 or 2.6.1.0.
My Platform: Win2000, Python 2.4.1, wxPython 2.6.1.0
Regards,
Dietmar Schwertberger.
2005-08-25 20:28:27 UTC in wxWidgets
-
e.g. with demos\win32gui_taskbar.py:
Fatal Python error: This thread state must be current
when releasing
Python 2.3; win32all versions 1.55 and 1.57; Windows
2000
OK with 2.2; 1.48; Windows 98.
2003-08-12 17:59:26 UTC in Python for Windows extensions
-
Logged In: YES
user_id=86612
No, it was always "/", but it seems that when extsep was
moved from os.py to OS specific ...path.py, this was
changed by accident.
riscospath.sep is ".".
2003-05-09 16:22:16 UTC in Python
-
Logged In: YES
user_id=86612
File upload didn't work with my browser.
Patches are available from
http://www.schwertberger.de/RISCOSpatches.txt.
2003-05-07 21:35:40 UTC in Python
-
Support for RISC OS platform with Python 2.3.
Some IP6 related #ifdefs in socket.c for non IP6
platforms.
Patches are relative to 2.3b1.
2003-05-07 21:27:58 UTC in Python
-
The following fixes some index errors:
def servletURI(self):
"""This is the URI of the servlet, without
any query strings or extra path info"""
sspath=self.serverSidePath() #ensure that
extraURLPath has been stripped
pinfo=self.pathInfo()
if not self._extraURLPath:
if pinfo and pinfo[-1]=="/": pinfo =...
2003-03-04 16:51:52 UTC in Webware for Python
-
In Application.filenamesForBaseNameNew()
regex matches for self._filesToServeRegexes
are ignored because continue only continues the
inner for loop:
for regex in self._filesToHideRegexes:
if regex.match(shortFilename):
continue
Could be fixed with:
shouldServe = 1
for regex in self._filesToHideRegexes:
if...
2003-03-02 14:48:29 UTC in Webware for Python
-
2 fixes:
RISCOS/Modules/getpath_riscos.c:
Include trailing '\0' when using strncpy [copy
strlen(...)+1 characters].
Lib/plat-riscos/riscospath.py:
Use riscosmodule.expand for os.path.abspath.
[fixes problems with site.py where
abspath("<Python$Dir>") returned
join(os.getcwd(), "<Python$Dir>") as e.g.
"SCSI::SCSI4.$.<Python$Dir>" because...
2001-12-15 20:54:37 UTC in Python