Per A. Brodtkorb
|
033c18fd9f
|
Fixes issue #1556
Replaced XXX.keys() calls with idiomatic python 3 calls that are compatible with python 2 such as eg:
* replaced "y = xxx.keys()" or "y = list(xxx.keys())" with just "y = list(xxx)"
* replaced "sorted(xxx.keys())" or "sorted(list(xxx.keys()))" with just "sorted(xxx)"
* replaced "if not A in B.keys():" with "if A not in B:"
* replaced "for A in B.keys():" with "for A in B:"
See also https://python-future.org/compatible_idioms.html
https://python-future.org/compatible_idioms.html#dict-keys-values-items-as-a-list
|
2020-03-20 18:51:19 +01:00 |
|
Robin Dunn
|
705aa63d75
|
Merge branch 'more-windowidref' into wxPy-4.0.x
(cherry picked from commit ada7b2fc51 )
|
2018-06-25 19:12:00 -07:00 |
|
Robin Dunn
|
b1b0c9e297
|
wx.NewId() --> wx.ID_ANY or wx.Window.NewControlId() as appropriate
|
2018-06-19 10:31:56 -07:00 |
|
Metallicow
|
c273dfa9b1
|
Trim Trailing Whitespace demos
|
2016-11-24 19:26:05 -06:00 |
|
Robin Dunn
|
558fcfa5a3
|
PR61: Added python shebangs
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75686 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2014-01-23 00:44:14 +00:00 |
|
Robin Dunn
|
f96e25db1f
|
Copy the wxPython demo from Classic
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74164 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2013-06-11 18:24:09 +00:00 |
|