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 |
|
Robin Dunn
|
0dee5b1f23
|
tweak the text a little
|
2016-10-06 23:33:33 -07:00 |
|
Metallicow
|
6861fdf482
|
Update Cursor Demo
Add an example of all cursor options and a IcoFX-like widget test area.
|
2016-10-04 12:40:59 -05:00 |
|
Robin Dunn
|
23fa4115ca
|
More tweaks and fixes from testing the demo modules
|
2016-08-01 19:53:37 -07:00 |
|
Robin Dunn
|
a9595b241a
|
PR64: Various Phoenix and Py3 fixes for the demo and library
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75720 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2014-01-28 04:48:21 +00: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
|
f039f7c367
|
Initial port of wxPython demo from Classic to Phoenix.
Pulled and squashed from https://github.com/RobinD42/Phoenix/pull/7
Thanks Metallicow!
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74199 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2013-06-13 06:06:29 +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 |
|