Robin Dunn
|
d265d13f6c
|
Spelling fixes in the demo
|
2020-07-14 12:00:55 -07:00 |
|
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 |
|
Metallicow
|
e442736ee3
|
Fix some sizer issues with wxPy4.1
|
2019-06-20 19:46:45 -05:00 |
|
Robin Dunn
|
cd3de22068
|
Merge pull request #946 from RobinD42/throbber-issue924
Ensure the sequence attribute is a list by default
(cherry picked from commit c706dfacd9 )
|
2018-07-30 21:36:06 -07:00 |
|
wernerfb
|
c394c30f01
|
Py3 has no 'append' for range, is this o.k. like this or it only be done on Py3?
|
2015-04-05 11:40:39 +02: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
|
ea181b5b72
|
PR57: Mainly style changes, a few white space stuff and an xrange to range change.
* Phoenix FONTFAMILY, STYLE, WEIGHT Fixes
* PENSTYLE_ & BRUSHSTYLE_ Fixes
* Fix FONTWEIGHT to FONTSTYLE typo
* Phoenix Deprecations: wx.OPEN to wx.FD_OPEN
* Phoenix Deprecations: wx.SAVE to wx.FD_SAVE
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75683 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2014-01-23 00:19:55 +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 |
|