About some problem
Mark Lawrence
breamoreboy at yahoo.co.uk
Thu Jan 2 14:27:48 EST 2014
On 02/01/2014 17:46, Rustom Mody wrote:
>
> Oh ok I get what you are saying: python3 will not recognize a python2
> package and install it seemingly correctly but actually wrongly
>
No, it will install it quite correctly. What it won't know is that some
of the code is valid in Python 2 but invalid in Python 3. An example I
discovered 30 minutes ago.
raise "Not Valid DB Type"
is perfectly valid in Python 2. In Python 3 it's so illegal the 2to3
conversion tool can't cope with it :(
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.
Mark Lawrence
More information about the Python-list
mailing list