Hi,
In dUICursosrs I get a Deprecated warning from:
return wx.StockCursor(id) line 34
I changed it to
return wx.Cursor(id) and it works.
In dGrid
I have some code as follows:
self.gridinstance.processSort(0,True) and uses a data type of a blank
str = ''. Blank but not None.
Line 3047 in dGrid has the following which fails
sortingStrings = dataType in six.string_types
this works:
sortingStrings = isinstance(dataType, str)
Funny thing is the following
six.string_types
(<class 'str'>,)
type(dataType)
<class 'str'
Yet
dataType in six.string_types
returns False.
Also I was under the impression that we were not going to use 'six'????
Johnf
--- StripMime Report -- processed MIME parts ---
multipart/alternative
text/plain (text body -- kept)
text/html
---
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: https://leafe.com/archives
This message:
https://leafe.com/archives/byMID/[email protected]