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
|
9f2cc54b48
|
Update copyright years
|
2020-03-10 11:41:39 -07:00 |
|
Robin Dunn
|
6206d20bad
|
Various small tweaks and fixes
|
2019-09-11 12:56:11 -07:00 |
|
Robin Dunn
|
b77c88a280
|
Merge tag 'wxPython-4.0.2' into wxPy-4.0.x
(cherry picked from commit 4c56c39e52)
|
2018-06-17 22:04:22 -07:00 |
|
Robin Dunn
|
637db6c4bf
|
Change uses of FindWindowById to just FindWindow.
Also, clarify default value for parent arg in FindWindow* staticmethods.
|
2017-04-10 11:05:36 -07:00 |
|
Robin Dunn
|
c9e99b54b0
|
Update copyright in wx/lib
|
2017-02-13 17:06:07 -08:00 |
|
Metallicow
|
a8452dd575
|
Trim Whitespace lib directory
|
2016-10-12 22:21:38 -05:00 |
|
Robin Dunn
|
571668a23f
|
Remove the old CVS $Id: tags.
They don't work in git, and don't work by default in SVN either.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75847 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2014-02-09 02:39:35 +00:00 |
|
Robin Dunn
|
2fb6f00867
|
PR 42 from Metallicow. Py3 and Phoenix updates
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75603 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2014-01-11 23:13:15 +00:00 |
|
Robin Dunn
|
9f24505715
|
Merge of PR 11 with the whitespace-only changes omitted.
See https://github.com/RobinD42/Phoenix/pull/11
Mostly phoenix-port changes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74463 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2013-07-10 01:15:34 +00:00 |
|
Robin Dunn
|
247673201b
|
Copy (branch) wx.lib, wx.py and wx.tools from Classic, and include subpackages branched from 3rdParty
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@72061 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2012-07-13 01:36:07 +00:00 |
|
Robin Dunn
|
a30dfe91e2
|
I wasn't ready to add this yet.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71834 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2012-06-22 21:29:15 +00:00 |
|
Robin Dunn
|
c8c2e1d97b
|
set svn:eol-style to native
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71832 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2012-06-22 21:02:42 +00:00 |
|