I am about to start a personal project using python and I will be using it on both Linux(Fedora) and Windows(Vista), Although I might as well make it work on a mac while im at it. I have found an API for the GUI that will work on all 3. The reason I am asking is because I have always heard of small differences that are easily avoided if you know about them before starting. Does anyone have any tips or suggestions that fall along these lines?
|
3
|
|
|
|
|
|
In general:
More specific stuff:
|
||
|
|
|
|
Some things I've noticed in my cross platform development in Python:
|
||
|
|
|
|
|
||||||||
|
|
|
Some filename problems: This.File and this.file are different files on Linux, but point to the same file on Windows. Troublesome if you manage some file repository and access it from both platforms. Less frequent related problem is that of names like NUL or LPT being files on Windows. Binary distribution code (if any) would likely use py2exe on Win, py2app on Mac and wouldn't be present on Linux. |
||
|
