I am pretty sure that python scripts will work in all three, but I want to make sure. I have read here and there about editors that can write CPython, Jython, IronPython and I am hoping that I am looking to much into the distinction.
My situation is I have 3 different api's that I want to test. Each api performs the same functionality code wise, but they are different in implementation. I am writing wrappers around each language's apis. Each wrapper should expose the exact same functionality and implementation to python using Boost::python, Jython, and IronPython.
My question is, would a python script written using these exposed methods (that are common for each language) work in all three "flavors" of Python?
Like I said I am pretty sure the answer is 'Of course,' but I need to make sure before I spend too much time working on this.