Alexandre Detiste
|
0257f755cf
|
remove most of Python2 compatibility code
|
2025-02-02 20:17:45 -05:00 |
|
Alexandre Detiste
|
beb9932241
|
remove usage of six.print_()
|
2025-02-02 20:10:38 -05:00 |
|
Robin Dunn
|
92f8cd2d55
|
Fix lots of misspelled words
|
2020-07-14 11:38:32 -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
|
01f8f09f60
|
Trim trailing space samples directory
|
2016-12-05 16:34:47 -06:00 |
|
Robin Dunn
|
871c3112ef
|
Some Py3 fixes for roses sample
|
2016-07-06 20:23:02 -07:00 |
|
Robin Dunn
|
ed4756b902
|
Remove wx.lib.six and use the stock six module instead,
and add it as an installation dependency.
|
2016-06-30 20:07:57 -07:00 |
|
Robin Dunn
|
784673e690
|
PR 44 (modified): fixes print statements/functions in samples.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75629 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2014-01-15 08:13:12 +00:00 |
|
Robin Dunn
|
4a6e7786d6
|
Add the roses sample
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74263 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
|
2013-06-20 01:08:28 +00:00 |
|